header {
    background-color: rgb(167, 217, 255);
    padding: 7px 15px;
}
a {
    font-family: "Roboto Flex", verdana, monospace;
    color: rgb(53, 119, 156);
    font-size: 1.25em;
    font-weight: 500;
    margin: 5px 20px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
}
a:hover {
    background-color: rgb(224, 241, 255);
    cursor:pointer;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 16px rgba(57, 25, 74, 0.123);
}
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(to bottom, rgb(225, 241, 255), rgb(132, 192, 255));
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
nav {
    display: flex;
    justify-content: center;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgb(225, 241, 255), rgb(132, 192, 255));
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    #loader img {
        width: 1000px;
        margin-top: -220px;
        margin-left: -70px;
        animation: flicker 1s infinite;
    }
    @keyframes flicker {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
    }
    .sidebyside {
        margin: 20px;
        display: flex;
        align-items: flex-start;
    }
    img {
        width: 400px;
        border-radius: 20px;
    }
    .column {
        display: flex;
        flex-direction: column;
    }
    .b {
        width: 95%;
        padding: 1px;
        border-radius: 22px;
        background-color: #e6f7fb;
        border: 1.5px solid #84c0dc;
        box-shadow: 0 4px 18px 0 rgba(112, 177, 205, 0.13);
        overflow: hidden;
        transition: none;
    }
    .b:hover {
        box-shadow: 0 4px 18px 0 rgba(112, 177, 205, 0.13);
    }
    h2 {
        text-align: center;
        font-family: 'Poppins', Arial, sans-serif;
        font-weight: 700;
        font-size: 28px; 
        margin-bottom: 5px;
        margin-top: 5px;
        color:rgb(80, 120, 163);
    }
    p {
        margin-top: 5px; 
        text-align: left;
        font-family: 'Quicksand', Verdana, sans-serif;
        font-size:19px;
        font-weight:500;
        color:rgb(95, 142, 192);
    }
    li {
        list-style:none ;
        margin-bottom: 30px;
        font-family: 'Quicksand', Verdana, sans-serif;
    }
    .hid {display:none;}

@media (max-width: 1200px){
    p {
        font-size: 35px;
    }
        h1 {
            font-size: 44px;
        }
        .sidebyside {
            display: flex;
            flex-direction: column;
        }
        #house {
            width: 80px;
            height: 70px;
        }
    img {
        width: 800px;
        border-radius: 20px;
    }
}