body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.menu {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan */
    justify-content: center;
    margin-bottom: 20px;
}

.menu-item {
    background-color: #333;
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Animación al pasar el mouse */
.menu-item:hover {
    transform: scale(1.1);
    background-color: #555;
}

.contenido {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .menu-item {
        width: 100px; /* Ancho más pequeño en móviles */
        height: 100px; /* Altura más pequeña en móviles */
        font-size: 16px; /* Fuente más pequeña en móviles */
    }
}
