@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
}
body{
    background-color: aliceblue;
}
.topbar .container{
    /*background-color: rgb(50, 5, 173);*/
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    height: 70px;
}
.topbar .container .logo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.topbar .container .logo img{
    border-radius: 50%;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.topbar .container .logo h1{
    color: rgb(50, 5, 173);
    margin-left: 10px;
}
.topbar .container .logo h1:hover{
    color: rgb(73, 13, 236);
    margin-left: 10px;
    transform: scale(1.05);
    transition: 0.5s;
    cursor: pointer;
}
.topbar .container .navbar{
    display: flex;
    align-items: center;
    width: 70%;
}
.topbar .container .navbar ul{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.topbar .container .navbar ul li{
    list-style: none;
}
.topbar .container .navbar ul li a{
    color: rgb(50, 5, 173);
    font-family: 'Barlow', sans-serif;
    font-size: large;
    font-weight: bold;
    text-decoration: none;
    margin-right: 10px;
}
.topbar .container .navbar ul li a:hover{
    color: rgb(0, 106, 255);
    cursor: pointer;
}
.midbar .container{
    color: aliceblue;
    display: flex;
    margin: 10px;
    gap: 10px;
}
.midbar .container .description{
    background-color: rgb(13, 150, 188);
    text-align: center;
    border-radius: 10px;
}
.midbar .container .description h2{
    margin: 10px;
}
.midbar .container .description p{
    position: relative;
    margin: 10px;
}
.midbar .container .image img{
    border-radius: 10px;
}
footer{
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 50px;
    background-color: rgb(255, 255, 255);
}
footer p{
    color: #111;
    font-size: x-small;
    text-align: center;
}
@media(max-width: 500px){
    .topbar .container .logo h1{
        font-size: medium;
    }
    .topbar .container{
        /*background-color: rgb(50, 5, 173);*/
        background-color: rgb(255, 255, 255);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        height: 100px;
    }
    .midbar .container{
        flex-wrap: wrap;
        display: flex;
        margin: 10px;
        gap: 10px;
        justify-content: center;
        position: relative;
    }
    .topbar .container .navbar ul li a{
        color: rgb(50, 5, 173);
        font-family: 'Barlow', sans-serif;
        font-size: small;
        font-weight: bold;
        text-decoration: none;
        margin-right: 10px;
    }
    footer{
        width: 100%;
        position: fixed;
        bottom: 0;
        height: 50px;
        background-color: rgb(255, 255, 255);
    }

}