

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{

    padding:0;

    margin:0;

    box-sizing: border-box;

}



body{

    background-color: #ebeef5;

    background-size: cover;

    

    z-index: -1;

    overflow-x: hidden;
    

}

.header{
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1;
}

.navigationbar{
    display: flex;
    position: fixed;
    align-items: center;
    background-color: #ebeef5f2;
    height: 10vh;
    width: 100vw;
    top: 0;

}

.Logo{

    position: fixed;
    left: 5vw;

}



.imglogo{

    height: 8vh;

}

.imglogo:hover{
    transform: translateX(5px);
    transition: 0.2s;
}

.nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items:center;
    width: 100vw;
    margin-right: 5vw;
}

.nav a{
    font-family: 'Poppins';
    font-size: 20px;  
    font-weight: 200;  
    color: #3b588a;
    text-decoration: none;
    padding: 25px;

}

.nav a:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.3s;
}

.nav button{
    font-family: 'Poppins';
    font-size: 20px;  
    font-weight: 200;  
    color: #ebeef5;
    padding: 8px;
    background-color:#3b588a;
    border: none;
    border-radius: 25px;
    box-shadow: none;
    
}

button:hover {
    cursor: pointer;
    color: #ebeef5;
    background-color: #98b4e4;
    transform: scale(1.05);
    transition: 0.3s;
    box-shadow: none;
    border: none;  
}

.background{
    
    display: flex;
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    
    
    
    

}


.construction{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 30vh;
   
    
    
}

.construction img{
    width: auto;
    height: 15vh;
    border-radius: 25px;
    opacity: 80%;
}

h2{
    font-family: 'Poppins';
    font-size: 5vw;
    font-weight: 400;
    color: #ebeef5;
}
.construction p{
    font-family: 'Poppins';
    font-size: 1rem; 
    font-weight: 200; 
    font-weight: light;  
    color: #ebeef5;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}

.construction button{
    font-family: 'Poppins';
    font-size: 1.5rem;  
    font-weight: 200;  
    color: #ebeef5;
    padding: 10px;
    background-color:#3b588a;
    border: none;
    border-radius: 45px;
    box-shadow: none;

}

.construction button:hover {
    cursor: pointer;
    color: #ebeef5;
    background-color: #98b4e4;
    transform: scale(1.05);
    transition: 0.3s;
    box-shadow: none;
    border: none;  
}



















.footer{

    display: flex;
    justify-content: center;
    bottom: 0;

}






.socials{
    display: flex;
    position: fixed;
   
    
    justify-content: center;
    bottom: 15%;
}

.socials a{
    padding: 10px;
}

.socials img{
    opacity: 75%;
}

.socials img:hover{
  cursor: pointer;
    transform: scale(1.2);
    transition: 0.3s;  
}





.socials a:link {

    text-decoration: none;

}





@media (max-width: 500px) {

    body{
        overflow-y: hidden;
        overflow-x: hidden;
        
    }


   


   
}





@media (max-width: 500px) {

    .imglogo {

       height: 10vw; 
    }



    .navigationbar{
        justify-content: space-evenly;
        height: 8vh;
    }

    .nav button{
       
        font-size: 15px;
        padding: 8px;
    }

   

   .construction img{
    height: 10vh;
   }

   .socials{
    margin-bottom: 1vh;
   }
}



