* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    height: 100vh; /* Ocupa toda la pantalla */
    background-color: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay-text {
    text-align: center;
    color: white;
    position: absolute;
    top: 5%;
}

.text {
    font-size: 13px;
    font-family: Georgia;
    margin-top: 100px;
}

.text-1 {
    font-size: 27px;
    font-weight: bold;
}

.text-2 {
    margin-top: 10px;
}

/* Estilos para la imagen agregada */
.extra-image {
    width: 100%; /* La imagen ocupará el 20% del ancho del contenedor */
    max-width: 100px; /* No será más grande de 100px */
    height: auto; /* Mantiene la proporción */
    margin-top: -30px; /* Espaciado entre el texto y la imagen */
}

/* Ajustes para pantallas pequeñas (móviles) */
@media (max-width: 600px) {
    .extra-image {
        width: 100%; /* En móviles, la imagen será más grande proporcionalmente */
        max-width: 500px; /* Se reduce el tamaño máximo */
    }
}
