html {
    color: #dddddd;
    background-color: #000000;
}

header {
    position: fixed;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: #222233;
}

header h1 {
    flex-basis: 1;
    width: 80%;
}

header nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    
    width: 80%;
    flex-basis: 3;
}

.headerSpace {
    height: 70px;
}

.content {
    background-color: #222233;
    width: 1200px;
    min-height: 100vh;
    padding: 20px;
}

.contentContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    border: 0;
    margin: 0;
}


















.mainContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
}

.startBody {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222233;
    text-align: center;
    width: 1200px;
    height: 100%;
}

.startContent {
    text-align: center;
    width: 60%;
}

.startBody h1 {
    font-size: 2em;
    margin: 0;
}

#obscureFansTitle {
    font-size: 5em;
    margin: 0;
}

.mainContainer footer {
    background-color: #222233;
    width: 1200px;
    position: relative;
}

.navButtons {
    background-color: #222233;
    width: 1200px;
    position: relative;
}

.navButtons button {
    position: relative;
    top: 20%;
    left: 1%;
}

.externalLinks {
    position: relative;
    left: 5px;
}

.author {
    position: absolute;
    right: 5px;
}

.newsDate {
    align-self:flex-end;
}



.articleSeparator {
    border: solid;
    border-width: 1px 0 0 0;
    border-color: white;
    width: 800px;
}