@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.titulo h1 {
    font-size: 6rem; /* Muy grande para móviles */
    color: #f5c518;
    margin: 40px 20px;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 95%;
    max-width: 700px;
    padding: 0 20px;
}

button {
    padding: 40px;
    font-size: 3rem; /* Botones grandes y legibles */
    border: 4px solid #f5c518;
    border-radius: 30px;
    background-color: #1c1c1c;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

button:hover {
    background-color: #f5c518;
    color: #000000;
    transform: scale(1.05);
}

