body {
    margin: 0;
    height: 100vh;
    background-color: #161616;
}

a, dt {
    color: #d44;
    text-decoration: none;
}

dt {
    padding: 0.5em;
}

#root-div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    color: #ccc;
    font-family: "Consolas", "DejaVu Sans Mono", "Menlo", monospace;
    line-height: 1.2;
    font-size: 1.2em;
}

#left-side {
    flex: 1;
}

#right-side {
    flex: 1;
}

#left-title {
    text-align: center;
    padding: 10%;
}

#content {
    flex: 3;
    width: 60vw;
    padding-bottom: 17vh;
}

.link:hover {
    text-decoration: underline;
}

.vl {
    flex: 0 0 1px;
    background-color: #500;
    margin: 0 30px;
}

.article-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 10em;
    margin: 2em;
}

.article-button img {
    height: 100%;
    width: 50%;
}

.article-button h2 {
    margin: auto;
}

.side-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10%;
    padding: 5%;
}

.button {
    border: 2px solid grey;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease, border 0.2s ease;
}

.button:hover {
    background-color: black;
    border: 2px solid white;
}

.bottom-fade {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 17vh;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 0, 0, 0) , rgba(100, 32, 32, 1));
    z-index: 1000;
}


