body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
}

main > * { flex-grow: 1; }

.social-media-list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.social-media-list li {
    width: 10rem;
    background-color: #7070701a;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
}

.social-media-list li:hover {
    background-color: #7070702f;
    outline: 2px solid #1a1a1a;
    box-shadow: 5px 5px 5px black;
}

p, h1, footer { flex-grow: 0; }

/* fake scrollbar thumb because apparently you cant force thumb */
::-webkit-scrollbar-track {
    background: #313131;
    border-radius: 10px;
}

::-webkit-scrollbar-track:hover {
    background: #6e6e6e86;
}