
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');


*{
    box-sizing:border-box;
}

body{
    padding:0;
    margin:0;
    height:100vh;
    font-family: 'Montserrat';
    color:black;
}

div.spam{
    background-color:rgb(179, 179, 207);
    height:20px;
    padding:17px;
    display:flex;
    justify-content: center;
    align-items: center;
}

div.background{
    height:10vh;
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    padding:20px;
    color:rgb(0, 0, 0);
    
}

nav{
    position:fixed ;
    box-shadow: 0px 1px 40px 0;
    background-color: white;
    width:100vw;
    height:8vh;
    display:flex;
    justify-content: center;
    align-items:center
   
    
    
}

div.first{
    width:30%;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content: left;
}

div.second{
    display:flex;
    width:100%;
    justify-content: flex-start;
    height:100%;
    width:100%;
    background-color: brown; 
    visibility: hidden;
}

div.a{
    flex:1;
    height: 100%;
    display:fleX;
    justify-content: center;
    align-content: center;
    
}

a.nav-section{
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    color:black;
    background-color: rgb(248, 248, 255);
    text-decoration: none;

}

a.nav-section:hover{
    background-color: rgb(39, 189, 39)
}

nav div.hamburger{
    width:50px;
    height:50px; 

}

nav div.hamburger div.hamburger-active{   
    position:relative;
    width:100%;
    height:100%;
}

nav div.hamburger input{
    width:100%;
    height:100%;
    padding:0;
    margin:0;
    visibility:hidden ;
   
}



nav div.hamburger label.icon{
    position:absolute;
    left:0px;
    width:100%;
    height:100%;
    transform: rotate(0deg);
    transition: transform 180ms linear;
  
    


}

input[type="checkbox"]:checked ~ label.icon {
    transform: rotate(90deg);

}


nav div.hamburger label.icon img{
    width:100%;
    height:100%;
    
}



nav div.hamburger div.menu{
    position:absolute;
    top:53px;
    width:50vw;
    height:auto;
    background-color: white;
    visibility:hidden;
    opacity: 0;
    color:black
    

    
    
    
}

nav div.hamburger div.menu a{
   
    display: block;
    width:100%;
    height: 100px;
    padding:20px;
    border-bottom: 1px solid rgb(201, 201, 201);
    text-decoration: none;
    color:black;

}

nav div.hamburger div.menu a.border-top{
    border-top:1px solid rgb(201, 201, 201);
}

nav div.hamburger div.menu a:hover{
    background-color: rgb(39, 189, 39)
}

nav div.hamburger input:checked + div.menu{
    visibility: visible;
    opacity: 1;
    transition: opacity linear 300ms ;
}



div.logo-image{
    height:70px;
    width:180px
}

div.logo-image img{
    width:100%;
    height:100%;
}



header{
    width:100%;
    height:85%;
    display:flex;
    flex-direction: column;
    align-items:center;
    align-content: center;
    justify-content:Center;
  
    
}

header h3{
    font-weight: bolder;
}

header p{
    font-weight:500;
}

header button{
    margin-top:30px;
    padding:10px;
    border:none;
    border-radius:17px;
    background-color: white;
}

header button:hover{
    background-color:rgb(179, 179, 207);
}

main{
    margin-top:2rem;
    padding:16px;
    
}

p.pdf-link a{
    color:black;
    
}






    

    footer{
    min-height: 22rem;
    background-color:rgb(40, 40, 42);
    color:white;
    padding:20px;
    margin-top:0px;
    font-size:15px;
    }

a:link{
    color: white;
}

main h3{
    color:rgb(40, 40, 42);
}

main p{
    line-height:1.6;
    color:rgb(68, 68, 71);
  
}

main p span{
    font-weight: bold;
}

div.news{
    width:100%;
    height:400px;
    border:1px solid black;
    padding:8px;
}

footer a:hover{
    color:grey;
    cursor:pointer;
    text-decoration: underline;
}

/*div.spam a{
    color:rgb(142, 189, 0);
    font-weight: bold;
    text-decoration:none;
}*/

object{
    width:90vw;
    height:47vh;
  

}

p.author{
    font-size: 13px;
}


@media screen and (min-width:0px){

    div.first{

        width:100%;
        justify-content: flex-start;
       
}


@media screen and (min-width:1024px){
    
    div.first{
        display:none;
    }
    
    div.second{
        visibility: visible;
        
    }

}}
