@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

html * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    font-family: 'OpenSans', sans-serif;
}

#page {
    margin-bottom: 80px;
    overflow-y: scroll;
    font-size: 1.125rem;
}

#page::-webkit-scrollbar {
    width: 1rem;
    background-color: transparent;
}

#page::-webkit-scrollbar-thumb {
    background-color: rgb(163, 163, 163);
    border-radius: 0.5rem;
    border: 4px solid transparent;
    background-clip: content-box;
}

#page::-webkit-scrollbar-thumb:hover {
    background-color: rgb(128, 128, 128);
}

#page::-webkit-scrollbar-track {
    background-color: transparent;
}

#main {
    width: 650px;
    margin: auto;
    padding-bottom: 0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.circle-img {
    border-radius: 50%;
}

#header-container {
    display: flex;
    justify-content: right;
    position: sticky;
    top: 0;
    background-color: #f5f5f5;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#header-container>a {
    color: #666666;
    text-decoration: none;
    padding: 0.5rem;
}

#header-container>a:hover {
    color: #979ca6;
}

#footer-container {
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    background-color: #363636;
    color: #efede7;
}

#contact-title {
    font-size: 1rem;
    margin-top: 0.25rem;
}

#footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 1.25rem;
}

#footer-links>a {
    color: #efede7;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

#copyright {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}


/* MEDIA QUERIES */
@media (max-width: 650px) {
    #main {
        width: 100%;
    }
}