body {
    font-family: 'Poppins', sans-serif;
    background-color: #282626;
    color: white;
}

h3 {
    font-size: 28px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}

a {
    color: white;
    font-weight: 600;
}

.content {
    width: 100vw;
    height: 100vh;
    display: flex;
}

.left-section {
    width: 50%;
    padding: 80px;
    position: relative;
}

.right-section {
    background-image: url("../img/catering-broodjes.webp");
    background-size: cover;
    width: 50%;
    height: 100%;
}

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

.copyright {
    font-size: 13px;
    position: absolute;
    bottom: 50px;
}

.copyright a {
    text-decoration: none;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .content {
        flex-direction: column-reverse;
        height: 100%;
    }
    .left-section {
        display: block;
        width: auto;
        height: auto;
        padding: 40px;
    }

    .copyright {
        position: fixed;
        bottom: 0px;
        background-color: #282626;
        width: 100%;
        padding: 20px 0;
    }

    .right-section {
        height: 100%;
        width: 100%;
    }

    .logo {
        margin: 20px auto;
    }

    .mobile {
        display: block;
    }
    
    .desktop {
        display: none;
    }
}