* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: black; /* Fondo por si la imagen no cubre todo */
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.container img {
    width: 120%; /* Zoom de la imagen */
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* Aquí alejamos la imagen */
    object-fit: contain;
    z-index: 0;
    opacity: 0.9;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 234, 143);
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 1;
    text-align: center;
}

.back-button {
    position: absolute;
    top: 30px;  /* Ajustamos para separarlo un poco más del borde superior */
    left: 30px; /* Ajustamos para separarlo un poco más del borde izquierdo */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 5px;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.back-button img {
    width: 70px;
    height: 70px;
}