* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Estilos para el logotipo */
.logo-container {
    position: absolute;
    top: 10px;
    left: 10px;
}

.logo {
    width: 80px;
    height: auto;
}

/* Estilos del menú */
.menu-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.menu-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
}

.menu {
    display: none;
    background-color: #333;
    position: absolute;
    top: 30px;
    right: 0;
    border-radius: 5px;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    padding: 10px;
    text-align: left;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.menu-btn:hover {
    background-color: #555;
}

/* Estilos de las imágenes */
.images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 70px; /* Separación del borde superior */
}

.image-box {
    text-align: center;
    width: 100px; /* Reducido a 50% */
}

.image {
    width: 100px; /* 50% del tamaño original */
    height: auto;
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.1);
}

.image-box p {
    margin-top: 5px;
    font-size: 14px; /* Texto más proporcional al nuevo tamaño */
    color: white;
}

/* RESPONSIVE: Cuando la pantalla sea más angosta */
@media (max-width: 300px) {
    .images-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Dos columnas */
        gap: 15px;
        justify-content: center;
        align-items: center;
        margin-top: 70px;
    }

    .image-box {
        width: 60px; /* Tamaño reducido para celulares */
    }

    .image {
        width: 60px; /* Mantiene el 50% en pantallas pequeñas */
    }
}