*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2a392e;
    color: #DDe4D4;
    font-family: 'Inter', serif;
    @media screen and (max-width: 700px){
        padding: 15px;
    }
}
a{
    color: #DDe4D4;
    text-decoration: none;
}
.container{
    max-width: 100%;
    width: 600px;
}
img{
    max-width: 100%;
    width: auto;
}
.info{
    text-align: center;
}
h1{
    font-weight: normal;
    margin-bottom: 15px;
}
.gegevens{
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
}
.werkzaamheden{
    margin-top: 30px;
    background-color: #DDe4D4;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #2a392e;
    font-size: 18px;
    font-style: italic;
}