body {
    margin: 0;
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Josefin Sans', sans-serif;*/
}
* {
    box-sizing: border-box;
}

::selection {
    background: #79cdcc;
    color: white;
}

@font-face {
    font-family: 'Lemon/Milk bold';
    font-style: normal;
    font-weight: normal;
    src: local('Lemon/Milk bold'), url('LemonMilkbold.woff') format('woff');
}

#hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-position: 50% 50%;
    z-index: 99;
}

#hero path {
    transition: transform 100ms ease-in;
}

#hero path:hover {
    transform: scale(1.3);
}

#hero-text {
    position: relative;
    width: 100vw;
    height: 80vh;
}

#hero-text .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
}

h1 {
    font-family: 'Lemon/Milk bold', sans-serif;
    margin: 0;
    font-size: 70px;
    line-height: 1.1;
}

h2 {
    font-size: 1.1em;
}

@media (min-width: 500px) {
    h1 {
        font-size: 100px;
    }

    h2 {
        font-size: 1.3em;
    }
}

@media (min-width: 700px) {
    h1 {
        font-size: 150px;
    }

    h2 {
        font-size: 1.5em;
    }
}

.container {
    position: relative;
    z-index: 100;
    padding: 64px 28px;
    background: #79cdcc;
    color: black;

}

.container h3 {
    margin: 0. 0 0.7em;
    font-size: 3em;
    text-align: center;
}

.container h4 {
    margin: 2em 0 1em;
    font-size: 1.4em;
    text-align: center;
}

.container p {
    margin: 1.7em auto;
    max-width: 700px;
    line-height: 1.6em;
    text-align: justify;
}

.container .video {
    margin: 0 auto;
    max-width: 800px;
}

.icons--center {
    margin: 0 auto;
    max-width: 500px;
    justify-content: space-between;
}

.icons {
    display: flex;
    justify-content: space-between;
}

.icons a {
    display: block;
    width: 20%;
    transition: transform 100ms ease-in;

}

.icons a:hover {
    transform: scale(1.3);
}
