* {
    font-family: "EB Garamond", serif;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 46px;
    font-weight: 600;
    margin: 0 0 10px;
}

h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 10px;
}

h3 {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 400;
}

body {
    background: #272829;
    padding: 0;
    margin: 0;
}

#wrapper {
    width: 100vw;
    height: 100vh;
}

.lang-switch {
    text-align: right;
    padding: 20px 40px 0 0;
}

.row {
    max-width: 1400px;
    min-height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.flex-item.left {
    flex-basis: 60%;
}

.flex-item.right {
    flex-basis: 38%;
}

.inner-flex {
    display: flex;
    flex-direction: column;
    height: 540px;
    justify-content: flex-start;
    text-align: left;
}

button {
    margin-top: 20px;
    background: #61677A;
    padding: 10px 40px 12px;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    -webkit-border-radius: 25px;
}

button:hover {
    background: #fff6e0;
    color: #61677a;
}

.blurb-en {
    display: none;
}

.blurb-ua {
    display: block;
}

p {
    padding: 30px 30px 0 0;
}

@media (max-width: 797px) {
    #wrapper {
        height: 100%;
        width: 100%;
        padding-bottom: 30px;
    }
    .row {
        width: 100%;
        flex-direction: column;
        padding-top: 30px;
    }
    .flex-item {
        flex-basis: 100%;
        padding: 0 15px;
    }
    .inner-flex {
        height: unset;
    }
    img {
        width: 75%;
    }
}