* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    outline: 0;
}

a {text-decoration: none;}

.container {
    position: relative;
    width: 80%;
    left: 10%;
    top: 50px;
}

.text-container p{
    font-size: 1.25rem;
    color: #333;
    font-weight: bold;
    line-height: 2rem;
    text-align: justify;
    margin-top: 1rem;
}

.red {color: #a00;}

.default-link {
    color: #a00;
    font-weight: bold;
}

.default-link:hover {border-bottom: 2px solid #a00;}

#welcome-section {
    text-align: center;
    margin-top:30px;
} 

.default-selection{
    color: #fff;
    background: #a00;
    padding: .5rem 1rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.focus-selection {
    color: #a00;
    background: #fff;
    padding: .5rem 1rem;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

hr {
    border: 0;
    height: 3px;
    background: #aaa;
    margin: 20px 0;
}

/*Search*/
#welcome-section {text-align: center;}

#logo-container {text-align: center;}

#search-container {
    width: 100%;
    height: 40px;
    background: #ddd;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    top: 1rem;
}
#search-box {
    position: relative;
    width: calc(100% - 40px);
}

#search {
    width: calc(100% - 1rem);
    padding: 0 .5rem;
    height: 40px;
    border: 0;
    background: #ddd;
    font-weight: bold;
    color: #333;
}

#search:focus {
    color: #a00;
}

#search-button-box {
    width: 40px;
    height: 40px;
}

#search-button {
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#search-button:hover {
    background: #a00;
    color: #fff;
}

#search-button i {
    vertical-align: middle;
    line-height: 40px;
}

/*Default list of articles*/
.articles-container { position: relative;}

.box {background: #a00;}

.big-article-box {
    position: relative;
    margin-top: 1rem;
    width: 100%;
    height: 520px;
}

.article-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.article-meta {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .35s ease;
}

.article-title {
    position: absolute;
    width: 90%;
    bottom: 2rem;
    left: 5%;       
}

.article-title p {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .35rem;
    color: #a00;
    background: #fff;
    padding: 5px 10px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: .35s ease;
    line-height: 48px;
}

.article-info {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 2rem;
}

.article-info p {
    font-size: .8rem;
    font-weight: bold;
    color: #a00;
    background: #fff;
    padding: 5px 10px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: .35s ease;
}

.article-link:hover .article-info p, .article-link:hover .article-title p  {
    background: #a00;
    color: #fff;
}