body, html {
    margin: 0;
}
@font-face {
    font-family: estedad;
    src:url("/font/estedad.ttf");
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #7E65C2;
}

.logo{
    display: flex;
    justify-content: center;
}
.logo img {
    width: 30%;
    margin: auto;

}

@keyframes fadeIn {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.0;

    }
    100% {
        opacity: 1;

    }
}

.text{
    margin: 20px;
}

.splash-text {
    color: white;
    font-size: 12px;
    text-align: center;
    font-family: estedad;
}

.help-text {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: estedad;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#help-button, #whatsapp-button {
    display: inline-block;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-family: estedad;
    font-size: 12px;
}

#help-button {
    background-color: #3498db;
}

#whatsapp-button {
    background-color: #25D366;
}
