#login-screen {
    position: relative;
    padding-top: 50px;
}

#login-screen::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: url("../images/houses.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: -1;  /* Place the background behind the content */
}

.bs-icon{
    --bs-icon-size:.75rem;
    display:flex;flex-shrink:0;
    justify-content:center;
    align-items:center;
    font-size:var(--bs-icon-size);
    width:calc(var(--bs-icon-size) * 2);
    height:calc(var(--bs-icon-size) * 2);
    color:var(--bs-primary);
}

.bs-icon-xs{
    --bs-icon-size:1rem;
    width:calc(var(--bs-icon-size) * 1.5);
    height:calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm{
    --bs-icon-size:1rem;
}

.bs-icon-md{
    --bs-icon-size:1.5rem;
}

.bs-icon-lg{
    --bs-icon-size:2rem;

}.bs-icon-xl{
    --bs-icon-size:2.5rem;
}

.bs-icon.bs-icon-primary{
    color:var(--bs-white);
    background:var(--bs-primary);
}
    
.bs-icon.bs-icon-primary-light{
    color:var(--bs-primary);
    background:rgba(var(--bs-primary-rgb),.2);
}

.bs-icon.bs-icon-semi-white{
    color:var(--bs-primary);
    background:rgba(255,255,255,.5);
}

.bs-icon.bs-icon-rounded{
    border-radius:.5rem;

}.bs-icon.bs-icon-circle{
    border-radius:50%;
}

.welcome {
    text-align: center;
}

.blog-title {
    text-align: center;
    color: azure;
}

.about-us {
    margin: 20px;
    background-color: #d9e5ff;
    opacity: 80%;
    width: auto;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left;
    padding: 20px;
}

.technical {
    color: #d9e5ff;
    padding: 20px;
    text-align: center;
} 


