body {
    background-color: #3c4353;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
}

header {
    display: flex;
    background-color: #fdfeff !important;
    min-height: 65px;
    justify-content: space-around;
    padding-left: 45px;
    padding-right: 45px;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
}

header img {
    max-width: 65px;
}

header h1{
    padding-left: 17px;
    font-size: 20px;
    cursor: pointer;
}

header a{
    text-decoration: none;
    color: rgb(0, 136, 255);
}

.nav-link:hover{
    color: rgb(255, 217, 0);
    font-size: 15.1px;
}

nav a{
    cursor: pointer;
    font-size: 15px;
}



main{
    /*background-color: #00ccff;*/
    display: flex;
    justify-content: center;
    margin: 0;
}
.PRONTO{
    display: flex;
    /*background-color: #ff00e6;*/
    width: 80vw;
    max-width: 1000px;
    min-width: 300px;
    margin: auto;

}

h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    font-size: 9em;
    letter-spacing: 5px;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(13, 0, 255, 0.263));
    line-height: 0.7em;
    outline: none;
    animation: animate 5s linear infinite;
}

@keyframes animate
{
    0%, 18%, 20%, 50.1%, 60%, 65.1%, 80%,90.1%,92% 
    {
        color: #bcbaba1a;
        text-shadow: none;
    }
    18.1%, 20.1%, 30%, 50%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100%
    {
        color: #fffb00;
        text-shadow: 0 0 10px #f40303,
        0 0 20px #03bcf4,
        0 0 40px #03bcf4,
        0 0 80px #03bcf4,
        0 0 160px #03bcf4,
    }
}