.banner {
    background-image: url(../content/banners/banner_bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    font-family: Oregular;
}

.banner h1{
    position: relative;
    margin: 0 0 0 80px;
    font-size: 75px;
}



@media screen and (max-width: 480px){
    .banner {
        background-position-x: -500px;
    }
    .banner h1{
        margin: 0 0 0 30px;
        font-size: 45px;
        top: 200px;
    }
}