HTML, body{
    font-family: 'Hanken Grotesk';
    font-weight: 200;
    /* background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1); */
    line-height: 1.5;
    height: 100%;
}

img{
    display: inline-block;
    width: 100%;
    height: auto;
}
.btn{
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}
.btn img{
    display: block;
    width: 20px;
    margin-right: 10px;
}
#wrapper .inside{
    padding: 40px;
    box-sizing: border-box;
}
#header{
    position: relative;
}
#header h1{
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 1);
    left: 1em;
    text-transform: uppercase;
    font-size: 4em;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
#wrapper, 
#footer .inside{
    max-width: 1200px;
    margin: 0 auto; 
    width: 60em;
}
.flex-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
}
.flex-container .visual{
    flex: 1 0 40%;
}
.flex-container .content{
    flex: 1 0 60%;
    padding: 2em;
    box-sizing: border-box;
}
.flex-container h2{
    margin: 0;
    font-size: 1.7em;
}
#footer{
    background-color: rgba(0, 0, 0, 1);
    padding: 20px 0 60px;
    box-sizing: border-box;
}
#footer .flex-container{
    justify-content: space-between;
}
#footer a{
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}
#footer a:hover{
    text-decoration: underline;
}
#footer .flex-container > div{
    flex: 0 1 50%;
}
#footer .flex-container .footer-nav.right{
    text-align: right;
}
#footer ul{
    margin: 0;
    padding: 0;
}
#footer li{
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
}
#footer .socials img{
    width: 32px;
    height: auto;
}