@import url('https://fonts.cdnfonts.com/css/aero03');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
    font-family: 'Aero_03', sans-serif;
    scroll-behavior: smooth;
}

.title{
    background-color: #1F1F21;
    color: white;
    width: 12%;
    text-align: center;
    padding: 5px;
    margin-bottom: -10px;
    justify-items: center;
}

.navbar{
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    margin-top: -50px;
    background-color: #1F1F21;
}

.navbar img{
    width: 190px;
    height: auto;

}

.container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
 
}

.gallery{
   background-color: #1F1F21;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   width: 100%;
}

.gallery img{
    width: 350px;
    height: auto;
    margin: 15px;
}

.gallery2{
    display: flex;
    flex-direction: column;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.gallery2 img{
    width: 350px;
    height: auto;
    margin: 15px;
}

.chapter{
    display: flex;
    flex-direction: row;
    margin-bottom: 100px;
    margin-top: 30px;
    margin-bottom: 100px;
    background-color: #1F1F21;
}

@media screen and (max-width: 1180px){

    .chapter{
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

}