@font-face {
    font-family: 'Belleza';
    src: url('fonts/Belleza-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body{
    font-family: 'Belleza';
    color: #292929;
}
.header{
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.header_img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.title{
    font-size: 2.0em;
    text-align: center;
    position: relative;
    margin: 60px 0;
}
.about_us{
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-bottom: 40px;
    color: #333536;
}
.about_us_title{
    font-size: 1.7em;
    text-align: center;
    margin: 20px;
    line-height: 1.4em;
    max-width: 800px;
}
.about_us_subtitle{
    font-size: 1.1em;
    text-align: center;
    font-weight: 200;
    margin: 20px;
    max-width: 600px;
    line-height: 1.4em;
}
.banner_container{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner{
    width: 100%;
}

@media only screen and (min-width: 900px) {
    .header{
        height: 700px;
    }
    .about_us_title{
        font-size: 2.3em;
        text-align: center;
        margin: 20px;
        line-height: 1.4em;
    }
    .about_us_subtitle{
        font-size: 1.3em;
        text-align: center;
        font-weight: 200;
        margin: 20px;
        line-height: 1.4em;
    }
}