body {
    margin: 0;
    padding: 30px 30px 30px 30px;
    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}
#background {
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100vh;
    background-image: url('background-green.png');
    background-size: cover;    
    background-position: center; 
    background-repeat: no-repeat;
    z-index: -1;
}
#header {
    line-height: 1.2;
    width: 22vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
h1 {
    font-size: 24px;
    margin: 0;
    margin-bottom: -10px;
}
h2 {
    font-size: 18px;
    font-weight: 400;
}
a {
    margin-top: 20px;
    font-weight: 300;
    font-size: 12px;
    text-decoration: none;
    color: black;
}
a:hover {
    font-weight: 400;
}

@media only screen and (max-width: 600px) {
    #background {
        display: none;
    }
    #header {
        width: 70vw;
    }
}