body {
  background-image: linear-gradient(45deg, #567EA2,#231B30);
  color : #fff;
  font : 1.2em 'Lato', sans-serif;
  height: 100%;
  margin: 0;
  width: 100%;
}

h1{
    font-size: 3em;
}

p{
    color: #e8e0dc;
    font-size: 1.2em;
}

.container{
    align-items: center;
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.container div{
    display: flex;
    width: 50%;
    height: 100vh;
}

.container div:first-child{
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

div.picture_bg{
    background-image: url('/images/oceanbranch.jpg');
    background-position: center center;
    justify-content: flex-end;
    background-size: cover;
}


@media only screen and (max-width: 768px) {

    .container{
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 100%;
    }

    .container div{
        display: flex;
        width: 80%;
        height: 50vh;
    }
    
}