/*
 * Theme Name: Vrijwilligers Drenthe
 * Description: 
 * Version: 1.0
 * Author: Mattijs Wit (functioneelwit.nl)
*/

:root {
    --green: #65945B;
    --light-green: #E3EDE8;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: var(--green);
    color: var(--light-green);
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 2%;
}

a.btn {
    background: white;
    color: var(--green);
    border-radius: 100px;
    padding-top: 10px;
    padding-right: 24px;
    padding-bottom: 10px;
    padding-left: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    display: inline-block;
    margin-top: 20px;
}

a.btn:hover {
    background: var(--light-green);
}

h1 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 40px;
}

h2 {
    font-size: 1.2em;
    margin-top: 30px;
}

p {
    margin-top: 10px;
    margin-bottom: 30px;
}

.text-wrapper{
    box-sizing: border-box;
    width: 680px;
    margin: 100px auto 40px auto;
}

@media screen and (max-width: 680px) {
    .text-wrapper {
        width: 100vw;
        padding: 0 40px;
    }
}

.logo-wrapper {
    box-sizing: border-box;
    max-width: 90vw;
    width: 1280px;
    margin: 40px auto;
    border-radius: 40px;
    padding: 30px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media screen and (max-width: 1280px) {
    .logo-wrapper {
        width: 100vw;
        padding: 20px;
        max-width: 100vw;
        flex-wrap:wrap;
        flex-direction:row;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-bottom: 0;
    }
    .logo-wrapper img {
        margin: 0 15px 15px 0;
    }
}

