@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   
    font-family: 'Poppins', sans-serif;
}

.navbar {
    padding: 20px 30px;
    
}

.navbar ul li {
    list-style-type: none;
    padding: 4px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: .1s linear;
}

.btn-group button,
.btn-group a {
    transition: .2s linear;
}

.content {
    margin-top: 3rem;
}

.imgBox img {
    height: 500px;
    width: 500px;
}

.menuIcon {
    height: 50px;
    display: none;
}

@media (max-width: 645px) {
    .navbar {
        flex-direction: column;
    }
    .navbar ul {
        flex-direction: column;
        background: #262fdc;
        width: 90%;
        #0e8ee9 #083a5e #080c5e padding: 20px;
        border-radius: 20px;
        display: none;
    }
    .navbar ul li {
        text-align: center;
        padding: 10px;
        flex-direction: column;
        margin: 5px 0px;
    }
    .navbar ul li a {
        color: #fff;
    }
    .navbar ul li:hover {
        background: #fff;
    }
    .navbar ul li:hover a {
        color: #000;
    }
    .topBar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .menuIcon {
        display: block;
        cursor: pointer;
    }
    body {
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .btn-group {
        display: none;
    }
    .content {
        flex-direction: column;
        margin-top: 2rem;
    }
    .content .imgBox img {
        height: 300px;
        width: 300px;
    }
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f9fb;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden{
    opacity: 0;
    visibility: hidden;
}

.loder::after{
content:"";
width: 75px;
height: 75px;
border: 15px solid #dddddd;
border-top-color: #7449f5;
border-radius: 50%;
animation: loading 0.75s ease infinite;
}

@keyframes loading{
    from{
        transform: rotate(0turn);
    }
    to{
        transform: rotate(1turn);
    }
}