/* Global */
:root {
    --groen: #1842A4
;
}

body {
    background: linear-gradient(59deg, #183E95 0%, #3761C3 100%);
    display: flex;
    justify-content: center;
    background-repeat: no-repeat;
    min-height: 200vh;
    overflow: hidden;
}


/* Text */
h1 {
    color: #1842A4;
    font-family: "Spartan", "Open Sans",sans-serif;
    font-size: 32px;
    line-height: normal;
    margin: 0;
}

h2 {
    color: #1e2021;
    font-family: "Open Sans",sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: normal;
    margin: 0;
}

p {
    color: #1e2021;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;
    line-height: normal;
    margin: 0;
}

/* Lists */
li {
    color: #1e2021;
    font-family: "Open Sans",sans-serif;
    font-size: 20px;
    line-height: normal;
    list-style: none;
}

ul {
    padding: 0;
}

/* Interaction */
a:link {
    color: #1842A4
}

/* Layout */
.box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 10rem 5rem;
    width: fit-content;
    height: fit-content;
    border-radius: 40px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}


.content {
    display: flex;
    margin: 70px;
    margin-bottom: 0;
    padding: 0;
    flex-direction: column;
    gap: 20px;
}


/* Images */
.logo {
    display: flex;
    width: 12rem;
    margin: 0 70px 35px 70px;
    right: 0;

}


.achtergrond-logo {
    position: absolute;
    z-index: -1;
    width: auto;
    height: auto;
    bottom: -4.5rem;
    right: -1.5rem;

}

/* Responsiveness */
@media screen and (max-width: 1024px) {
    .box {
        margin: 4rem;
    }

    .content {
        margin: 3rem;
    }

    .achtergrond-logo {
        width: 50%;
        bottom: -.5rem;
        right: -2rem;
    }
}

@media screen and (max-width: 768px) {
    .content {
        margin: 2rem;
    }

    .box{
        margin: 3rem;
    }

    h1{
        font-size: 24px;
    }

    h2{
        font-size: 20px;
    }

    li {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }
}