body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
  
footer {
    margin-top: auto;
}

.profile_pics{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: 20px;
    object-fit: cover;
}


.sidebar{
    height: 100%;
    width: 240px;
    position: fixed;
    z-index: 1;
    top: 80px;
    left: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.main_content{
    margin-left: 240px;
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
}

.accordion {
    background-color: #eeeeee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    border: none;
    outline: none;
    transition: 0.4s;
}
  
.accordion:hover {
    background-color: #ccc;
}
  
.panel {
    padding: 0 18px;
    background-color: rgba(255,255,255,0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 16px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

ul.info{
    padding-inline: 15px;
}
ul.info li{
    list-style: none;
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    width: 220px;
    text-align: left;
    padding-left: 5px;
}

ul.skill li{
    display: inline-block;
    justify-content: space-evenly;
}

ul.source{
    margin-bottom: auto;
    margin-left: 240px;
    padding: 0px 10px;
}
ul.source li{
    display: inline;
    list-style: none;
    font-size: 10px;
    -webkit-text-fill-color: grey;
}