.navbar .nav-btn{
    justify-self: center;
    width: auto;
    font-family: 'Varela Round', sans-serif;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 1px;
    text-decoration: none;
    color:white;
    background: #1aa4b8;
    /* border:#2ecc71 2px solid; */
    padding: 9px 23px 9px 23px;
    border-radius: 50px;
}

.navbar .nav-btn:hover{
    color:#1aa4b8;
    background: white;
    /* border: white 2px solid; */
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

#articles{
    text-align: center;
    margin-top: 72px;
}

#article-container{
    display: grid;
    grid-template-columns: repeat(2 , 1fr) ;
    justify-content: center;
    gap: 32px;
    margin: 0 15%;
    margin-bottom: 72px;
}

.article-box{
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 50vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    /* border-radius: 25px; */
}

.article-overlay{
    width: 100%;
    min-height: 50vh;
    
    position: relative;
    background: #1aa4b8;
    opacity: 0.7;
    z-index: 1;
    /* border-radius: 25px; */

}

.article-content{
    position: absolute;
    z-index: 2;
    text-align: left;
    padding: 50px 50px;
    /* border-radius: 25px; */

}

.article-content h3{
    font-size: 1em;
    text-transform: uppercase;
    color: #eeeeee;
    padding: 0;
    margin: 0;
    
}

.article-content h2{
    color: white;
    margin-top: 5px;
}

a:hover .article-overlay{
    opacity: 1;
}

a:hover .article-content h2{
    color: white;
}

.decoration-container{
    overflow: hidden;
    margin: 40px 50px;
    
}

.decoration{
	position: relative;
	display: inline-block;
	text-align: center;
}
.decoration:before, .decoration:after{
    content: '';
    position: absolute;
    top: 50%;
    border-bottom: 2px solid #000000;
    width: 591px; /* half of limiter*/
    margin: 0 20px;
}
.decoration:before{
    right: 100%;
}
.decoration:after{
    left: 100%;
}

.decoration h2{
    color: black;
}

/* TABLET */
@media (max-width: 980px) {
    #article-container{
        grid-template-columns: repeat(1 , 1fr) ;

    }
    
}

/* PHONE*/
@media (max-width: 630px) {
    #article-container{
        margin: 0 25px;
        margin-bottom: 72px;
    }
    
}


    
