body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #6f6f6f;
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}

body a {
    text-decoration: none;
    color: rgb(154, 154, 254);
}

/* For whatever reason, this visted effect won't apply to the links in the frist section in main. */
body a:visited {
    color: rgb(236, 154, 254);
}

header {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
}

header h1 {
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 300%;
    background-color: rgb(29, 29, 29);
    border-radius: 10px 10px 0px 0px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(29, 29, 29);
    border-radius: 10px;
    box-shadow: 8px 10px 3px rgba(0, 0, 0, 0.1);
}

section .container {
    border-radius: 0px 10px 10px 10px;
}

header p {
    padding: 2%;
    width: 90%;
    background-color: rgb(91, 91, 91);
    border-radius: 10px;
    font-size: 150%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.body-section {
    margin: 2%;
}

.tab-heading {
    width: fit-content;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(29, 29, 29);
    border-radius: 10px 10px 0px 0px;
    font-size: 200%;
}

section p {
    padding: 2%;
    width: 90%;
    background-color: rgb(91, 91, 91);
    border-radius: 10px;
    font-size: 150%;
}

.site-list {
    padding: 2%;
    align-self: flex-start;
    width: fit-content;
    margin-left: 3%;
    background-color: rgb(91, 91, 91);
    border-radius: 10px;
    list-style: none;
}
.site-list li {
    padding: 5px;
}

.site-list li:hover {
    transform: scale(110%);
}