.news {
    color: #00ef00;
}

.news p {
    font-size: 20px;
}

.news a {
    font-size: 20px;
}

#news-header {
    width: 98vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#news-header img {
    height: 9vh;
}

.news-page-field {
    width: 80%;
    padding: 0 20px;
    border: solid;
}



#newsback {
    position: absolute;
    bottom: 1vh;
    display: flex;
    width: 98%;
    justify-content: center;
}

#newsback a {
    color: #00ef00;
}

.news-nav {
    padding: 10px;
    width: 82%;
    background-color: #333333;
    display: flex;
    justify-content: space-evenly;
}

.news-nav a {
    color: #00ef00;
}

.article-header {
    height: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-header img {
    border: solid;
    width: min(120px, 20vw);
    min-width: 70px;
}

.article-header h2 {
    font-size: min(50px, 5vw);
    margin: 0;
    word-wrap: normal;
    text-align: right;
}

.article-header h3 {
    font-size: min(30px, 3vw);
    margin: 0;
    word-wrap: normal;
}

.article-header h4 {
    margin: 0;
    font-size: min(18px, 1.8vw);
    word-wrap: normal;
    color: #007700;
}

.article-header div {
    display: flex;
    height: 160px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}





#article-container {
    overflow: hidden;
    height: 80vh;
    width: 60vw;
    margin: 10vh 1vw;
    border: solid;
}

#article-embed-header {
    width: 60vw;
    height: 200px;
    position: relative;
    overflow: hidden;
    bottom: 65px;
    z-index: 100;
    border: none;
}

#article-field {
    width: 60vw;
    height: calc(82vh + 100px);
    position: relative;
    top: -300px;
    border: none;
}

#newsbw {
    width: 60%;
}


#article-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: #00ef00;
    border-style: solid;
    border-width: 2px;
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    right: 4vw;
    top: 11vh;
    width: 30vw;
    height: 80vh;
}

.selectable-article {
    width: 90%;
    min-height: 24vh;
    margin: 10px 0;
    border: solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
}

.selectable-article:hover {
    background-color: #002600;
    transition: background-color 1s;
}

.selectable-article div {
    width: 60%;
    margin: 0 1vw;
    
}

.selectable-article h2 {
    font-size: min(1.7vw, calc(10px + 2.8vh));
    text-wrap: normal;
    text-align: right;
    margin: 0;
}

.selectable-article h4 {
    text-wrap: normal;
    text-align: right;
    font-size: min(18px, 2.7vw);
    color: #007700;
    margin: 0;
}


.selectable-article img {
    height: 14vh;
    margin: 0 1vw;
}

#fsdiv {
    position: absolute;
    left: 2vw;
    top: 17vh;
    z-index: 5;
    background:#0a0a0a;
}

#fsbutton {
    width: calc(3vw + 20px);
}

@media (max-width: 700px) {

    #article-container {
        overflow: hidden;
        position: relative;
        height: 80vh;
        width: 95vw;
        margin: 10vh 1vw;
        border: solid;
    }

    #article-embed-header {
        width: 95vw;
        height: 200px;
        position: relative;
        overflow: hidden;
        bottom: 65px;
        z-index: 100;
        border: none;
    }
    
    #article-field {
        width: 95vw;
        height: calc(82vh + 100px);
        position: relative;
        top: -300px;
        overflow-y: scroll;
        border: none;
    }

    #article-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: #00ef00;
        border-style: solid;
        border-width: 2px;
        position: absolute;
        overflow-y: scroll;
        overflow-x: hidden;
        right: 15vw;
        top: 96vh;
        width: 70vw;
        height: 80vh;
    }

    .full-page {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
        z-index: 3;
    }

    #news-header {
        position: absolute;
        top: 6px;
    }

    #newsback {
        top: 180vh;
    }

}