body {
    margin: 0;
    padding: 0;
    font-family: 'Fugaz One', Arial, sans-serif; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #FFFFB2, #FF42AF);
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#logo {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#logo img {
    width: 100%;
    height: auto;
    display: block;
}

#logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, white, transparent);
    animation: glareAnimation 2s linear infinite;
}

@keyframes glareAnimation {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

#buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 1);
    font-family: 'Fugaz One', Arial, sans-serif; 
}

.button:hover {
    background-color: #45a049;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 1); 
}

#comingSoon {
    background-color: #808080;
}

.glare-animation::before {
    animation: glareAnimation 2s linear infinite;
}
