
.archive-container{
    background-color: #006B73;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 50px;
}

.archive-container *{
    color: white;
    font-family: sans-serif;
    font-weight: bold;
}

.archive-container a{
    text-decoration: none;
}

.archive-container a:visited{
    text-decoration: none;
    color: white;
}

.archive-container a:hover{
    text-decoration: none;
    color: white;
}

.list-container{
    display: grid;
    grid-template-columns: auto;
    grid-gap: 25px;
}

.article{
    height: 345px;
    width: 345px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 5vh;
}

.page-nav-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-nav{
    background-color: lightgray;
    color: black;
    padding: 1rem;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}



.previous{
    margin-right: 1rem;
}

.page-status{
    font-size: 2rem;
}


@media screen and (max-width: 374px){

    .article{
        height: 300px;
        width: 300px;
    }
}


.article-shader{
    background-color: rgba(0,0,0,0.25);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* padding: 1rem; */
}

.date{
    /* background-color: rgba(0,107,115,0.75); */
    color: white !important;
    text-align: right;
    padding: 2rem;
    font-weight: bold;
    font-size: 2rem;
    text-shadow: 0px 0px 3px grey;
    display: inline-block;
    font-family: sans-serif;
}

.bottom-row{
    height: 100px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0,107,115,0.75);
    color: white;
    width: 100%;
}

.bottom-row img{
    width: 100px;
}

.bottom-right{
    padding: 0rem 1.5rem;
}

.bottom-right h3{
    font-size: 2rem;
    font-weight: bold;
    /* font-style: italic; */
    /* text-align: right; */
}

.article img{
    max-width: 100%;
}

@media screen and (min-width: 750px) {
    .page-nav-container{
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .list-container{
        grid-template-columns: auto auto;
    }
}

@media screen and (min-width: 1000px) {
    .list-container{
        grid-template-columns: auto auto auto;
        
    }

    .article{
        width: 300px;
        height: 300px;
    }

    .date{
        padding: 1rem;
    }

    .bottom-right{
        padding: 0rem 1rem;
    }
}

@media screen and (min-width: 1200px) {
    .list-container{
        grid-template-columns: auto auto auto;
       
    }

    .article{
        width: 350px;
        height: 350px;
        
    }

    .date{
        padding: 2rem;
    }

    .bottom-right{
        padding: 0rem 1.5rem;
    }
}