*{
    margin: 0px;
    border: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    background-color: #000;
}
.side-bar {
    width: 20%;
    background-color: #00C4CC;
    height: 100vh;
    height: 100vh;
    position: fixed;
}

.main {
    margin-left: 20%;
    height: auto;
    width: 100%;
}
.cont{
    width: 100%;
    height: auto;
   display: flex; 
   align-items: flex-start;
}
 
.links:hover {
    background-color: white;
    border: 1px solid black;
    width: 100%;
    border-right-width: 10px;
    border-top: none;
    border-bottom: none;
    border-bottom-right-radius: 10px;
    color: black;
} 
.links a:hover  {
    color: black;
}

.logo-cont {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.links_cont{
    width: 100%;
    white-space: nowrap;
}
  
  .links{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 30px;
  }
  
  .links span{
    margin-top: 3px;
  }
  .icon{
    width: 20px;
}
  
  .links p{
    margin-left: 8px;
  }
  .links a{
    text-decoration: none;
    color: white;
  }
  .cont .fas{
    display:none;
}

/* Main body  */
.main {
    background-color: black;

}
.top {
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.top h4{
    padding-top: 20px;
}
.container{
    background-image: url(images/Vector\ 3.png);
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    height: 100%;
    margin: 0 auto;
    /* background-attachment: fixed; */
}
a{
    color: white;
    text-decoration: none;
}



.middle, .bottom {
    margin-top: 40px;
    width: 90%;
    margin: auto;
}


.line {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

.icon-g {
    width: 20px;
    margin-right: 10px;
    color: #00C4CC;
}
.icon-w {
    width: 20px;
    margin-right: 10px;
    color: #fff;
}

.bottom {
    margin-top: 80px;
}

.footer {
    color: red;
    font-size: 25px;
    display: flex;
    justify-content: space-between;
}
.footer-icon {
    width: 25px;
}
.logout {
    display: flex;
}
.exit {
    color: red;
    text-decoration: none;
    font-size: 20px;
    margin-left: 10px;
}

/* nav{
    margin: 20px auto ;
    padding-right: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;

} */
@media (max-width: 480px) {
    .left-child{
        gap:10px;
    }
    .fas.fa-bars{
        padding-left: 10px;
        padding-top:10px
    }
    nav{
        padding-right: 10px;
    }
    
    .main{
        margin-left: 0;
    }
    .side-bar {
        display: none;
        z-index:10px;
        width: auto;
    } 
    .cont .fas{
        display:block;
        font-size:25px;
        color: white;
    }
    
    .container{
        object-fit: contain;
        margin-top: 70px;
        
    }
    
   
    
   
         
  }