* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body {
background-color: #111;
color: white;
height: 100vh;
}

.container {
display: flex;
width: 100%;
height: 100vh;
}

/* LADO IZQUIERDO */
.left {
width: 40%;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.logo {
width: 120px;
}

.text-box {
background-color: #222;
padding: 15px;
border-radius: 10px;
}

/* LADO DERECHO */
.right {
width: 60%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}

.btn {
width: 200px;
padding: 12px;
background-color: #444;
color: white;
text-decoration: none;
text-align: center;
border-radius: 8px;
cursor: pointer;
border: none;
}

.btn:hover {
background-color: #666;
}

/* REVISTA */
.magazine {
width: 90%;
height: 90%;
border-radius: 10px;
}