#main {
    height: calc(100vh - 200px);
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #111111;
    position: relative;
}

.container {
    border: 1px solid white;
    display: flex;
    position: relative;
    width: 90%;
    margin: 5vh auto;
    border-radius: 0.5vw;
    overflow: hidden;
}

.news_text {
    flex: 3;
    color: white;
}

.news_text h1 {
    font-family: 'Red Hat Mono';
    font-weight: 600;
    padding: 0 2vw;
    font-size: 3em;
    margin-bottom: 0;
}

.news_text p {
    padding: 0 2vw;
    font-size: 1.5em;
}

.news_date {
    font-size: 1em !important;
    margin-top: 0.5em;
    color: #d3d3d3;
}

.news_image {
    flex: 1;
}

.news_image img {
    width: 90%;
    margin: 5%;
    border-radius: 0.5vw;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

a {
    text-decoration: none;
}

@media only screen and (max-width: 1000px) {
    .container {
        flex-direction: column-reverse;
    }
}