
html,body{
    height: 100%;
}
body{
    background: url(img/background.jpg);
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;
}


/*Formatando a barra de navegação*/




/*Formatando a caixa de informações*/
#InfoBox{
    width: 100%;

}
#InfoBox h1{
    font-weight: 700;
    font-size: 3em;
    margin-bottom: 10px;

}
#InfoBox #GlassEfect{
    padding: 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

#InfoBox p{
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.6px;
    font-size: 0.9em;
}
#InfoBox a{
    
    color: aliceblue;
    background-color:  #3DD5FA;
    background-color:  #054D8A;
    background-color:  #14829b;
    text-decoration: none;

    
    display: inline-block !important;
    
    border-radius: 5px;
    padding: 8px 20px;

    font-size: 0.9em;
    letter-spacing: 1px;
    margin-top: 10px;
    
    box-shadow: 4px 2px 3px 2px rgba(0, 0, 0, .6) ;
}


/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) 
{ 
    #InfoBox h1{
        font-weight: 700;
        font-size: 1.4em;
        margin-bottom: 10px;
    
    }
    #InfoBox p{
        font-size: 0.7em;
        margin-bottom: 5px;        
    }
}

/* Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {  

    #InfoBox a{
    
        color: aliceblue;
        background-color:  #3DD5FA;
        background-color:  #054D8A;
        background-color:  #14829b;
        text-decoration: none;
    
        
        display: inline-block !important;
        
        border-radius: 5px;
        padding: 4px 14px;
    
        font-size: 0.6em;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        
        box-shadow: 4px 2px 3px 2px rgba(0, 0, 0, .6) ;
    }
    #InfoBox #GlassEfect{
        padding: 10px 15px;
        border-radius: 20px;
        backdrop-filter: blur(3px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        overflow: hidden;
    }

}

/* Medium devices (tablets, less than 992px)*/
@media (min-width: 991.98px) {  
    #GlassEfect .Text{
        position: relative;
        top: 100px;
        opacity: 0;
        transition: 1s;
        transition-delay: 2.5s;
    }
    #GlassEfect:hover .Text{
        opacity: 1;
        position: relative;
        top: 0px;
        transition: 0.5s;
    }
}

/* Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {  

}

/* X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {  

}