@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');
body{
    background-color: aliceblue;
    font-family: 'poppins';
    
    padding-bottom: 0;
    margin-bottom: 0;
}

.main{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo>h1{
    color: rgba(3, 3, 31, 0.8);
}

.welcome{
    background-color: rgba(168, 168, 168, 0.2);
    display: grid;
    grid-template-columns: 1.6fr 0.4fr;
    grid-template-rows: 1fr;
    padding: 15px;
    border-radius: 15px;
}

.text{
    grid-row: span 2;
}

.welcome>h3{
    font-size: 1em;
    grid-area: 2/2/3/3;
}

.status{
    align-items: center;
    display: flex;
    gap: 10px;
}

.blue{
    background-color: #fff;
    width: 170px;
    padding: 3px;
    height: 10px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}
.white{
    background-color: #E8572A;
    width: 70px;
    padding: 2px;
    height: 5px;
    border-radius: 10px;
    position: absolute;
}
.facilities{
    background-color: rgba(168, 168, 168, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.facility{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.showcase{
    display: flex;
}

.box{
    background-color: rgba(3, 3, 31, 0.8);
    height: 180px;
    width: 180px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fac-white{
    background-color: #fff;
    height: 20%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;    
}

.cli-img,.lib-img{
    place-self: center;
}

.cli-txt>h2,.lib-txt>h2{
    margin: 0;
    text-align: center;
    color: #fff;
}

.fac-white p{
    font-size: 1em;
    margin: 8px;
    font-weight: bold;
}

#status{
    color: #38C36F;
}

#status-1{
    color: #E8572A;
}


a{
    text-decoration: none;
    cursor: pointer;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(3, 3, 31, 0.8);
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 50px;
}

