body {
    background-color: rgb(129, 174, 221);
    font-family: 'Nunito', sans-serif;
}

.container {
    max-width: 600px;
    margin: auto;
}

@media (max-width: 991px) {
    .container {
        padding: 20px;
    }
}

.logo {
    margin-top: 100px;
}

@media (max-width: 991px) {
    .logo {
        margin-top: 0;
    }
}

.logo img {
    width: 100%;
    height: auto;
}

.titel h1 {
    margin-top: 50px;
    font-weight: 200;
    font-size: 26px;
    color: #fff;
    letter-spacing: 5px;
    text-align: left;
}

.tekst {
    font-weight: 500;
    margin-top: 100px;
}

@media (max-width: 991px) {
    .tekst {
        margin-top: 50px;
    }
}

@media (min-width: 768px) {
    .tekst {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.tekst_button img {
    width: 150px;
    height: 150px;
    transition: .2s all ease-in;
}

@media (max-width: 767px) {
    .tekst_button img {
        margin-top: 20px;
    }
}

.tekst_inhoud {
    font-size: 20px;
    margin-right: 10px;
}

.tekst_inhoud a:hover {
    color: #fff;
}

.tekst_inhoud a {
    color: inherit;
    transition: .2s all ease-in;
    text-decoration: none;
}

.tekst_button a:hover img {
    transform: scale(1.1);
}

.contact {
    font-weight: 200;
    color: #fff;
    margin-top: 50px;
    font-size: 20px;
}

.contact a {
    color: inherit;
    text-decoration: none;
    margin-right: 10px;
    transition: .2s all ease-in;
}

.contact a:hover {
    color: #000;
}