@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');


*{
    box-sizing: border-box;
    font-family: 'Poppins';
    margin: 0;
    
}

body{
    background-color: #7e5443;
    overflow-y: hidden;
    
    
}

.background{
    display: flex;
    flex-wrap: wrap;
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;

}

.main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.construction{
    display: flex;
    position: relative;
    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: 25px;
    font-weight: 400;
    color: #ebeef5;
}
.construction p{
    font-family: 'Poppins';
    font-size: 20px; 
    font-weight: 200; 
    font-weight: light;  
    color: #ebeef5;
    padding: 15px;
}

.construction button{
    font-family: 'Poppins';
    font-size: 30px;  
    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;  
}



@media (max-width:500px){



h2{
    
    font-size: 5rem;
    
}
.construction p{
    font-size: 20px; 
    padding: 15px;
}

.construction button{
    font-size: 30px;  
   
    padding: 10px;
    border-radius:45px;
    

}

}
