@keyframes pop-up {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

body {
    background: url('Images/5266448-fundo-retro-futurista-gratis-vetor.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Roboto', sans-serif; 
    text-align: center;
    padding: 50px;
}

.title {
    text-align: center;
    margin-bottom: 20px;
    animation: pop-up 0.5s ease-out;
    font-family: 'Future Edge', sans-serif; /
}

.menu-container {
    background-color: rgba(0, 0, 128, 0.5); /* Navy blue with 50% opacity */
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}

a {
    display: block;
    margin: 20px 0;
    padding: 10px;
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    animation: pop-up 0.5s ease-out;
}

a:hover {
    border-color: #ff00ff; /* Neon purple */
    color: #ff00ff;
}

a:nth-child(2):hover {
    border-color: #ff6600; /* Neon orange */
    color: #ff6600;
}

a:nth-child(3):hover {
    border-color: #00ccff; /* Neon blue */
    color: #00ccff;
}