* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 0);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 15pt;
    color: white;
}

.text-links {
    color: #c4302b;
    text-decoration: none;
    font-weight: bold;
}

.text-links:hover {
    color: #ff413b;
    text-decoration: underline;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgb(192, 0, 0);
    font-size: 40pt;
    height: 80px;
}

.title-header {
    margin-top: 10px;
    margin-left: 20px;
}

.link-navbar {
    font-size: 12pt;
    padding-right: 20px;
    color: white;
    margin-bottom: 10px;
    text-decoration: none;
}

.link-container {
    margin-bottom: 10px;
}

.link-navbar:hover {
    color: lightgray;
    text-decoration: underline;
}

.content-outline {
    padding-left: 30px;
    border-left: 5px;
    border-right: 5px;
    border-top: 0px;
    border-bottom: 0px;
    border-color: white;
    border-style: solid;
    padding-top: 150px;
    padding-right: 30px;
    padding-bottom: 30px;
}

footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgb(255, 0, 0);
    height: 80px;
    font-size: 40pt;
}

.foot-title {
    padding-top: 10px;
}

.link-foot {
    font-size: 12pt;
    padding-right: 20px;
    color: white;
    margin-bottom: 10px;
    text-decoration: none;
    margin-left: 20px;
}

.link-foot:hover {
    color: lightgray;
    text-decoration: underline;
}

::-webkit-scrollbar {
    background: rgb(51, 51, 51);
    width: 11px;
}

::-webkit-scrollbar-thumb {
    background: white;
    width: 100%;
    border-style: solid;
    border-radius: 5em;
    border-color: black;
}

::-webkit-scrollbar-thumb:hover {
    background: lightgray;
}