@import url('https://fonts.googleapis.com/css2?family=Protest+Guerrilla&family=Roboto&family=Silkscreen&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(-45deg,
        #0C2D48, #2E8BC0, #e1fcaf, #D2FBA4, #BFD7ED);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    filter: blur(10px);
    transform: scale(1.05);
    z-index: -1;
}

header{
    font-family: 'Roboto', sans-serif;
    background-color: #0C2D48;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 12px 50px;
    height:3.3vh;
    box-shadow: 5px rgba(0, 0, 0, 0.1);
}

.home {
    float: left;
}

.linkgit{
    float: right;
    line-height: 25px;
    padding-top: 3px;
    
}

.github-logo{
    padding-right: 10px;
    
    width: 25px;
    

}

.github {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    float: right;
    text-decoration: none;


}

.github:hover{
    cursor:pointer;
}

.saudacao{
    margin-top: 90px;
    text-align: center;
    font-size: 80px;
    font-family: 'Silkscreen', sans-serif;
    color: #1E2D2F;
    padding-top: 35px;

}

.centro{
    text-align: center;
    overflow: hidden;
    height: 50vh;
    padding-top: 70px;
}

.pesquisa{
    
    margin:auto;
    margin-top: 100px;
    width: 45%;
    height: 5%;
    border-radius: 25px;
    display: block;
    font-family: 'Protest Guerrilla', sans-serif;
    font-size: 30px;
    line-height: 45px;
}

.caixa{
    display: flex;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.29);
    outline: none;
    text-align: center;
    
    font-family: 'Protest Guerrilla', sans-serif;
    font-style: normal;
    font-size: larger;
    width: 100%;
    height: 45px;
    position: relative;
    display: flex;
    
}

.caixa:not(:placeholder-shown){
    font-family:'Roboto';
    font-size: large;
}

.botoes{
    font-family: 'Roboto', sans-serif;
    margin-top: 35px;
    
    display: inline;
    align-items: center;
    align-content: space-between;
    justify-content: space-around;

    
}


.botao{
    overflow:auto;
    width: 12%;
    height: 37px;
    text-align: center;
    color: #000000;
    cursor: pointer;
    font-size: 15px;
    outline: none;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: -4px 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(11.1px);
    border: 1px solid rgba(255, 255, 255, 0.29);

}

.botao:hover{
    cursor: pointer;
}

.rodape{
    font-family: 'Roboto', sans-serif;
    font-size: medium;
    display: flex;
    flex-direction: column;
    
    
}

.rodape > div{
    background-image: linear-gradient(to top,#0C2D48 , #ffffff00 );
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    
    line-height: 50px;
    color: white;
    text-align: center;

}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


@media (max-width: 580px){

    header{
        text-align: center;
        height: 8vh;
        flex-direction: column;
        padding-top: 2px;
        line-height: 30px;
        
    }

    .home{
        float: none;
        
    }

    .linkgit{
        align-items: flex-end;
        float: none;
        

    }

    .github-logo{
        padding-top: 5px;
        float: none;
        width: 20px;
        
    }

    .github{
        
        font-size: 18px;
        float: none;
        
    }

    .saudacao{
        font-size: 60px;
        padding-top: 0px;
    }

    .centro{
        padding-top: 0px;
        margin-top: 10px;
    }

    .pesquisa{
        font-size: large;
        width: 80vw;
    }

    .caixa{
        flex-direction: column;
        float: none;
        
    }

    .botoes{
        flex-direction: column;
        
    }

    .botao{
        width: 20vw;
        font-size: 14px;
    }
    
}