* {
    box-sizing: border-box;
}

body {
    background-color: black;
    margin: 0;
    padding: 20px;
    border: 0;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
}

.container {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.content {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    min-width: 300px;
    border: 1px solid #fff;
    padding: 20px;
    background-color: #0c0c0c;
}

.home-link {
    padding-bottom: 20px;
}

.home-link a {
    color: #1c6ed5;
}

.home-link a:hover {
    background: rgba(51, 51, 51, 0.3) !important;
    color: #4a9bfd;
}

.content p {
    margin: 0;
    text-align: justify;
}

.subclass-content p {
    margin-left: 20px;
}

.content h1 {
    margin-bottom: 20px;
    margin-top : 0;
}

.content h2 {
    margin-bottom: 10px;
    font-weight: 300;
}

.content p {
    font-size: 14px;
    font-weight: 200;
}

a {
    color: #1c6ed5;
}

a:hover {
    background: rgba(51, 51, 51, 0.3) !important;
}

.li {
    text-align: left;
}


<!--------------------------------------------------------------------------->


.scroll::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fff;
    background: grey
}

::-webkit-scrollbar-thumb:hover {
    background: #5c5d5e;
    border-radius: 10px
}