* {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}


.bold {
    font-weight: bold;
}

.flexbox-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.sidebar {
    background-color: #202225;
    width: 70px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

.sidebar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 10% 0;
    border-radius: 50%;
    transition-duration: .3s;
}

.sidebar img:hover {
    transition-duration: .3s;
    border-radius: 40%;
}

.sidebar hr {
    margin: 10% 20%;
    border: none;
    border-top: 2px solid #42464d;
}


.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltext {
    display: none;
    position: absolute;
    margin: 10% 0;
    padding: 20%;
    font-size: 12px;
    line-height: 1.6em;
    border-radius: 5px;
    background: #202225;
    height: 20px;
    width: 100px;
}

.tooltext:before {
    content: "";
    position: absolute;
    top: 0%;
    right: 95%;
    border: 15px solid transparent;
    border-top: 15px solid #202225;
    margin-left: -15px;
    transform: rotateZ(90deg);
}

.tooltip:hover .tooltext {
    display: block;
    top: 0px;
    left: 80px;
}



.menu {
    color: white;
    width: 210px;
    background-color: #2f3136;
}

.menu ul {
    list-style: none;
    list-style-position: inside;
}

.menu details {
    margin-top: 10px;
}

.menu summary {
    color: lightgray;
    border-radius: 5px;
    margin-left: 15px;
    font-size: 13px;
    cursor: pointer;
}

.menu summary:hover {
    background-color: #42464d;
    color: inherit;
    text-decoration: none;
}

.menu li {
    border-radius: 5px;
    margin: 10px;
    font-size: 20px;
}

.menu .current-dir {
    background-color: #42464d;
}

.menu li:hover {
    background-color: #42464d;
    color: inherit;
    text-decoration: none;
}

.main {
    color: white;
    background-color: #36393f;
    flex-grow: 3;
}

.main h1 {
    width: fit-content;
    margin-left: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: white;
}

.main p {
    margin: 10px;
}

.main #twitter-share-button {
    margin: 10px;
    display: inline-block;
    color: #1DA1F2;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid;
    padding: 5px 7px;
    line-height: 1em;
    border-radius: 2px;
}