@import url(variables.css);
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

            /*** Body ***/

body{
    background: var(--color-1);
    overflow: hidden;
    height: 100%;
}

            /*** Header ***/

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vw 2vw 1vw 8vw;
    margin-top: 1vw;
}
h1{
    font-family: "Avenir-Heavy";
    font-size: 3vw;
    line-height: 1.5;
}

            /*** Sections ***/

div {  
    display: flex;
    margin: 5vw;
}  

section {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 3vw;
    padding-bottom: 2vw;
}  
section h2{
    opacity: 25%;
}
section p{
    font-family: "Avenir-Roman";
    margin-bottom: 0.7vw;
}

section img {  
    max-width: 100%;
    height: auto;
}

@media (max-width: 1000px) {
    body {
        overflow: visible;
    }
}