body {
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    background-color: rgb(24, 24, 24);
    color: white;
    margin: 0px;
}

main {
    position: relative;
    height: 100%;
    min-height: 100vh;
    margin: 0px;
    overflow: hidden;
}

.page-title {
    font-size: 50px;
    text-align: center;
    margin: 10px;
}
.page-description {
    font-size: 24px;
    text-align: center;
    width: 95%;
    max-width: 1000px;
    margin: 0px auto;
}

/* width */
::-webkit-scrollbar {
width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
background: #1f1f1f;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
} 

@media screen and (max-width: 830px) {
    .page-title { font-size: 35px; }
}