@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #190f0f;
}
body {
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
/* header{
    margin-left: auto;
    margin-right: auto;
    line-height: 100px;
    height: 100px;
    
    width: 100vw;
    max-width: 800px;
    display: flex;
    flex-direction: row;
} */

header > .left > a > img {
    width: 60px;
    height: 60px;
    margin-bottom: -20px;
}
header > .left > a > span {
    line-height: 100px;
    font-size:26px;
    font-weight: bold;
}

header a {
    text-decoration: none;
}

header > .right > a {
    margin-left: 10px;
}
@media only screen and (min-width: 600px) {
    header{
        margin-left: auto;
        margin-right: auto;
        width: 100vw;
        max-width: 800px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    header > .right {
        padding-right: 30px;
    }
    header > .left {
        padding-left: 30px;
    }
    header > .right {
        line-height: 100px;
        height: 100px;
    }
}
@media only screen and (max-width: 600px) {
    header{
        padding-bottom: 10px;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    header > .right {
        text-align: center;
    }
    header > .left {
        text-align: center;
    }
}

footer{
    color: #5c5252;
    margin-top: auto;
}
footer > a {
    text-decoration: none;
    color: inherit;
}


@media only screen and (min-width: 600px) {
    footer{
        margin-left: auto;
        margin-right: auto;
        line-height: 30px;
        height: 60px;
        width: 100vw;
        max-width: 800px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    footer > .whole {
        flex: 0 0 100%;
        text-align: right;
    }
}
@media only screen and (max-width: 600px) {
    footer{
        padding-bottom: 10px;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    footer > .right {
        text-align: center;
    }
    footer > .left {
        text-align: center;
    }

    footer > .whole {
        text-align: center;
    }
}

@media only screen and (min-width: 600px) {
    .hero {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .hero {
        margin-top: 20px;
    }
} 
.hero {
    width: calc(100vw-40px);
    padding: 20px;
    text-align: center;
}
.hero > .title {
    font-size: 30px;
    line-height:50px;
}
.hero > .subtitle {
    font-size:20px;
    line-height:30px;
}
.hero > .cta {
    position: relative;
    width: 200px;
    margin: auto;
    margin-bottom: 100px;
}
.hero > .cta > a {
    margin: 10px 0;
    display: inline-block;
}
.hero > .cta > img {
    position: absolute;
    overflow: hidden;
    width: 100px;
    height: auto;
    bottom: -100px;
    right: -40px;
    z-index: -1;
    transform: rotate(90deg);
}



@media only screen and (min-width: 600px) {
    .container{
        margin-left: auto;
        margin-right: auto;
        width: calc(100vw - 60px);
        max-width: 800px;
    }

    .image-row, .image-row-reverse {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 40px 0;
    }
    .image-row > img, .image-row-reverse > img {
        max-width: 40%;
    }

    .image-row > div, .image-row-reverse > div {
        font-size: 23px;
    }

    .image-row > div {
        text-align: left;
        margin-right: 20px;
    }

    .image-row-reverse > div {
        text-align: right;
        margin-left: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .container{
        margin-left: auto;
        margin-right: auto;
        width: 100vw;
        max-width: 800px;
    }

    .image-row {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin: 10px 0;
    }
    .image-row-reverse {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 40px 0;
    }

    .image-row > img, .image-row-reverse > img {
        max-width: 80%;
    }

    .image-row > div, .image-row-reverse > div {
        text-align: center;
        font-size: 20px;
        padding: 30px;
    }
}