/* Universal */
.nav-bar{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 70px;
    color: white;
    background-color:  #191919;
}
*{
    margin: 0;
    padding: 0;
}
.Menu{
    display: flex;
    align-items: center;
    width:300px;
    justify-content: space-between;
    
}
.Menu a{
    color: white;
    font-weight: bold;
    text-decoration: none;
    
}
.Menu a:hover{
    color: rgb(164, 5, 53);
    font-weight: bold;
    text-decoration: underline;
}
.title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width:300px;
}
.title img{
    width: 50px;
    margin: 10px;
}
/* News */
.header{
    background-color: #000000b1;
    padding: 50px 100px 10px;
}
.header p{
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
}
.img{
    height: 300px;
}
.img-container{
    display: flex;
    justify-content: center;
}

.header h1, h4{
    text-align: center;
    color: white;
    margin: 15px;
}

.news{
    height: fit-content;
    padding: 0px 100px 0px;
    background-color: #000000b1;
    padding-bottom: 50px;

}
.news h1{
    text-align: center;
    color:#181A1B;
    margin-bottom: 20px;
}
.news-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    column-gap: 20px;
    text-align: center;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}
.footer{
    background:#000;
    padding:30px 0px;
    text-align:center;
    }
    
.footer .row{
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: gray;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    }
    
.footer .row a:hover{
    color:#F90854;
    }

.footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    width:100%;
    display:inline-block;
    margin:0px 30px;
    }
    
.footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
@media screen and (max-width: 768px) {
    .footer{
        text-align:left;
            padding:5%;
        }
        
    .footer .row p{
        display:block;
        margin:10px 0px;
        text-align:left;
    }
       
    .footer .row p{
        margin:0% 3%;
    }    
}