@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');
*{
    font-family: 'Poppins', sans-serif;
}
/* END Font */
.construction-page{
    background: #F3C055;
    width: 100%;
    height: 100vh;
    position: relative;
}
.construction-box{
    background: white;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
    border-radius: 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.browser-btn {
    padding: 6px 0;
}
.browser-btn ul{
    margin: 0;
    padding: 0;
}
.browser-btn ul li{
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #000;
    list-style: none;
    display: inline-block;
    border: 1px solid;
}
.browser-btn ul li.red {
    background: red;
    border-color: #dd0000;
}
.browser-btn ul li.yellow {
    background: yellow;
    border-color: #d9c000;
}
.browser-btn ul li.green {
    background: green;
    border-color: #00b200;
}
.browser-search p{
    margin: 0;
    font-size: 12px;
    padding: 7px 20px;
    border-radius: 8px;
    color: #878787;
    background: #f2f2f2;
}
.construction-head{
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f2f2f2;
}
.construction-body{
    text-align: center;
}
.logo {
    margin: 12px;
}
.logo img{
    height: 50px;
}

.construction-body h1{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}
.construction-body p{
    font-size: 14px;
}