body{
    background-color: #000000;
}

.bgside{
    background-image: url('../img/bg.jpg');
    background-position: 65% 10%;
    background-size: cover;
    height: 100vh;
}

.content{
    height: 100vh;
    width: 100%;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
    color: #ffffff;
    background-color: #000000;
}
.content h1{
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}
.logo{
    width: 40%;
    margin: -30px 0 0 30px;
    /*position: absolute;*/
    /*top: 30px;*/
    /*left: 20px;*/
    margin: 0 auto 50px auto;
}

@media screen and (max-width: 768px){
    .bgside{
        height: 30vh;
    }
}