html,body {
    background-color: #371941;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.main-home {
    width: 100%;
    min-height: 100vh;
    background: url('../img/paax_logo.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

/*@supports (-webkit-touch-callout: none) {
    .main-home {
        background-attachment: scroll;
    }
}*/

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/**.neon-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}*/

.neon-sign {
    position: absolute;
    top: 30px;
    left: 60px;
    transform: rotate(-5deg);
    font-family: 'Pasifico', cursive;
    font-size: 6.5rem;
    color: #fff;
    text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff00de,
    0 0 30px #ff00de,
    0 0 40px #ff00de,
    0 0 55px #ff00de,
    0 0 75px #ff00de;
    animation: flicker 1.5s infinite alternate;
    z-index: 10;
    
}

@media (max-width: 600px) {
    .neon-sign{
        font-size: 2rem;
        top: 15px;
        left: 20px;
    }
}




@keyframes flicker {
    0% {opacity: 1; text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff00de,
    0 0 30px #ff00de,
    0 0 40px #ff00de,
    0 0 55px #ff00de,
    0 0 75px #ff00de;
    }
    50% {opacity: 0.8; text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff00de,
    0 0 30px #ff00de,
    0 0 40px #ff00de,
    0 0 50px #ff00de,
    }
    100% {opacity: 1; text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff00de,
    0 0 30px #ff00de,
    0 0 40px #ff00de,
    0 0 55px #ff00de,
    0 0 75px #ff00de;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px 16px;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0, 0.3);
    transition: transform 0.2s esase;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    text-decoration: none;
}