/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo */
body {
    background: #ffffff;
    font-family: "Courier New", monospace;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cuadro centrado */
.center-box {
    display: flex;
    gap: 60px;
    padding: 40px 20px;
    border-radius: 4px;
    border: 1px solid #ffffff;
}

/* Columna izquierda */
.left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left h1 {
    font-size: 16px;
    margin-bottom: 10px;
}

.left a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.left a:hover {
    text-decoration: underline;
}

/* Imagen derecha */
.right img {
    width: 260px;
    height: auto;
    border: 1px solid #000;
}
