body{
    margin: 0;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(53,64,147, 1);
}

div{
    box-sizing: border-box;
}

.fotoback{
    background-image: url(../img/Tim-fotoback.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    width: 100%;
    height: 100vh;
}

.content{
    width: 20%;
    left: 10%;
    height: 100%;
    background-color: rgb(104,113,106, 0.8);
    /* opacity: 0.8; */
    position: absolute;
    padding: 100px 50px;
}

.tekst{
    /* margin-top: 80px; */
    color: #fff;
    line-height: 140%;
    background: grey;
    position: absolute;
    left: 0;
    width: 200%;
    padding: 60px;
    bottom: 10%;
    background-color: rgb(53,64,147, 1);
}

a{
    color: #fff;
    text-decoration: none;
}

.logo img{
    width: 50%;
    height: auto;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
    
    .tekst{
        width: 300%;
       
    }

  }

@media only screen and (max-width: 600px) {
    
    .fotoback{
        height: 50vh;
    }   

    .content{
        width: 100%;
        left: 0;
        background-color: inherit;
        /* height: 50vh; */
    }

    .tekst{
        width: 100%;
        left: 0;
        padding: 25px;
        padding-top: 54px;
        padding-bottom: 54px;
        bottom: inherit;
        top: 50%;
    }

  }


  