body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
} header {
    padding-top: 1.25rem;
    padding-left: 4.5rem;
    position: absolute;
} h1 {
    font-size: 30px;
} .container {
    display: flex;
    justify-content: center;
    align-items: center;
} .container section {
    width: 50%;
} .container section.content {
    padding-left: 5rem;
} .container section.bg {
    width: 100%;
    height: 100vh;
    background-image: url("wijnbergen.png");
    background-size: cover;
    clip-path: polygon(49% 1%, 100% 0, 100% 100%, 0% 100%);
} .container section aside {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
} .container section aside svg{
    width: 1.25rem;
    min-width: 1.25rem;
}.container section aside a {
    text-decoration: none;
    color: #082084;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 700px) {
    h1 {
        font-size: 20px;
    } header {
        padding-left: 0.5rem;
    } .container section.content {
        padding-left: 1.25rem;
    }
}