@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=DM+Sans&display=swap');
* {
    box-sizing: border-box;
}
html, body{
    box-sizing: border-box;
    font-family: 'Poppins';
    font-size: 20px;
    margin:0;
    padding: 0;
    background-color: black;
    background-repeat: no-repeat;
    color: white;
}

div.container {
    max-width: 1600px;
    flex-flow: column;  
    padding: 6vw;
    padding-bottom:0;
    display: flex;
    margin: 0 auto;
    background-image: url('giewont.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
h1{
    font-size: 5.5vw;
    color: black;
    margin: 30px 0;
}
h1 em{
    text-decoration: underline;
    font-weight: 400;
    font-style: normal;
}
.head, .content{
    display:flex;
}
.head{
    margin-bottom:250px;
}
h1{
    font-family: 'DM Sans';
}
a{
    color: white;
    text-decoration: none;
}
.left{
    width: 40%;
}
.right{
    width: 60%;
}
@media screen and (max-device-width: 600px) {
    h1{
        font-size: 50px;    
    }
    .head{
        margin-bottom:20px;
    }
    .head img{
        width: 130px;
    }
    .content{
        flex-direction: column-reverse;
    }
    .head{
        flex-direction: column;  
    }
    .head > div {
        width: 100%;
    }
    .content div{
        width: 100%;
    }
}