*{
    margin: 0%;
    padding: 0%;
    border: 0%;
}
.logo{
    width:120%;
    display: flex;
    justify-content: right;
    align-items: right;
}
.logo img{
    width: 100%;
    border: 2px solid black;
    border-radius: 30px;
}
header{
   background-color:color-mix(in srgb-linear, blue 1%, black 100%);
    background-position: center;
    min-height: 100px;
}
.navbar{
    padding: 0;
    font-family: 'Source Sans Pro Topnav', sans-serif;
    font-size: 0;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    scrollbar-width: none;
}
.nav-list{
    width: 10%;
    display: flex;
    align-items: center;
}
.nav-list li{
    font-size: 15px;
    list-style: none;
     padding: 26px 30px;
 
}
.nav-list li a{
    text-decoration: none;
    color:white;
}
.nav-list li a:hover{
    background-color: white;
    color:black;
}
.navbar background{
width: 100%;
}
.frame{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height:100%;
    width:100%;
    margin:10px 10px;
    
}

.frame .right{
   width: 150%;
   margin-left: 10px;
   padding-top: 20px;
   padding-left: 50px;
   background-color:whitesmoke;
}
.frame .left{
    padding-left: 10px;
    
}
@media(max-width:600px){
    .frame{
        flex-direction: column;
    }
    .frame .left{
        margin-right: 0;
        margin-bottom: 10px;
        max-width: fit-content;
        min-height: auto;
        margin-right: 20px;
    }
    .frame .right{
        max-width:fit-content;
        min-height:min-content;
        margin-right: 20px;
    }
}

