body, html{
    height: calc(100% - 2em);
    margin: 0;
    font-family: "Montserrat";
    font-weight: bold;
}

body{
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h2{
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    background-color: #F7002A;
    margin: 0;
    padding: 25px 0;
    text-transform: uppercase;
    border-top: solid #000 3px;
    border-bottom: solid #000 3px;
}

#news{
    width: 100%;
    position: relative;
    min-height: 320px;
    font-size: 0;
}

#holder{
    overflow: hidden;
    white-space: nowrap;
}

#holder .paper{
    display: inline-block;
    background-color: #fff;
    min-height: 300px;
    margin: 10px 5px;
    margin-top: 0;
    width: 350px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition-duration: 0.1s;
    transition-property: transform;
    cursor: pointer;
    text-decoration: none;
    white-space: normal;
    vertical-align: middle;
    font-size: 16px;
}

#holder .paper:hover{
    transform: scale(1.01);
}

#holder .paper img{
    display: block;
    width: inherit;
}

#holder .paper p{
    color: #000;
    text-align: center;
    padding: 10px 5px;
}

@media only screen and (max-width: 500px){

    #news{
        min-height: 170px;
    }

    #holder .paper{
        width: 200px;
        min-height: 150px;
    }
}

/**********
* ARROWS
***********/
#news #leftscroll, #news #rightscroll{
    display: block;
    position: absolute;
    z-index: 1 !important;
    top: calc(50% - 25px);
    height: 50px;
    transition-duration: 0.2s;
    transition-property: all ease;
}

#news #leftscroll{
    left: 20px;
}

#news #rightscroll{
    right: 20px;
}

#news i{
    text-decoration: none;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    font-size: 50px;
    opacity: 0.4;
    transition-duration: 0.2s;
    transition-property: all ease;
}

#news #leftscroll:hover{
    transform: translateX(-5px);
}

#news #rightscroll:hover{
    transform:translateX(5px);
}

#news #leftscroll:hover i, #news #rightscroll:hover i{
    opacity: 1;
}

h3{
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

#container{
    margin: 40px 10%;
    text-align: justify;
    text-justify: inter-word;
}

#container p{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 17px;
}

#rule-button{
    text-align: center;
    margin: 50px auto;
    transition-duration: 0.2s;
    transition-property: transform;
    width: 280px;
}

#rule-button:hover{
    transform: scale(1.05);
}

#rule-button a{
    text-decoration: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 17px;
    background-color: #F7002A;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

#container figure{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 75px;
}

#container img{
    height: auto;
    width: inherit;
}

#container figcaption{
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: normal;
    margin-left: 10px;
    margin-top: 10px;
}

@media only screen and (min-width: 800px){
    #container #tabular{
        display: grid;
        grid-template-columns: 5fr 3fr;
        grid-gap: 50px;
    }
}