#FrontPic {
    /* display: block;
    width: 100%; */
    background-color: transparent;

}
#line {
    border: 4px solid rgb(0, 0, 0);
}


#Lb {
    width: 100px;
}

#wrapper {
    border: 1px solid blue;
}

#title {
    text-align: center;
    font-size: 80px;
}

.container {
    
    /*align-items: center;
    justify-content: center; */
  }

  #img {
    width: 100%;
  }
  
  .image {
    flex-basis: 70%;
    
  }
  
  .text {
    height: fit-content;
    font-size: 20px;
    padding-left: 20px;
    align-self: center;
    
  }
  nav{
    display:flex;
    align-items: center;
    justify-content: space-between;
    background: #228B22;
    padding:5px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo{
    width: 160px;
    margin-right: 45px;
    background: #fff;
    padding: 10px;
    border-radius: 30%;

}
.nav-left, .nav-right{
    display: flex;
    align-items: center;

}
.nav-left ul li{
    list-style:none;
    display:inline-block;

}
.nav-left ul li img{
    width: 28px;
    margin: 0 15px;
}
.nav-user-icon img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
.nav-user-icon{
    margin-left: 30px;
}
.search-box {
    background:#efefef;
    width: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.search-box img{
    width: 18px;
}
.search-box input{
    width: 100%;
    background: transparent;
    padding: 10px;
    outline: none;
    border: 0;
}
.online {
    position: relative;

}
.online::after {
    content: '';
    width:7px;
    height: 7px;
    border: 2px solid #efefef;
    border-radius: 50%;
    background: #41db51;
    position:absolute;
    top: 0;
    right: 0;
}
.container{
    display: flex;
    justify-content: space-between;
    padding: 13px 5%;
}
.left-sidebar {
    flex-basis: 25%;
    position: sticky;
    top: 70px;
    align-self: flex-start;

}
.right-sidebar {
    flex-basis: 25%;
    position: sticky;
    top: 70px;
    align-self: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    color: #626262;
}
.main-content {
    flex-basis: 47%;

}
.imp-links a, .shortcut-links a{
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #626262;
    width:fit-content;

}
.imp-links a img {
    width: 25px;
    margin-right: 15px;
}
.imp-links a:last-child{
    color: #228B22;
}
.imp-links{
    border-bottom: 1px solid #ccc;
}
.shortcut-links a img{
    width: 40px;
    border-radius: 4px;
    margin-right: 15px;

}
.shortcut-links p {
    margin: 25px 0;
    color: #626262;
    font-weight: 500;
}
.sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;

}
.sidebar-title h4 {
    font-weight: 600;
    font-size: 16px;

}
.sidebar-title a {
    text-decoration: none;
    color: #228B22;
    font-size: 12px;
}

@media (min-width: 650px) {
    .container {
        display: flex;
        /*align-items: center;
        justify-content: center; */
      }
    
      #img {
        width: 100%;
      }
      
      .image {
        flex-basis: 70%;
        
      }
      
      .text {
        height: fit-content;
        font-size: 20px;
        padding-left: 20px;
        
      }
    
}



