:root {
    --primary-color: #0011B7;
    --light: #F0F0FF;
    --dark: #0E0F11;
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poetsen-one-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poetsen One';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poetsen-one-v3-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins';
}

.entry {
    display: flex;
    box-sizing: border-box;
    min-height: calc(100vh - 60px);
    justify-content: start;
    align-items: center;
    flex-direction: row;
}

.left-side {
    background-color: var(--light);
    padding: 30px;
    width: 50%;
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-side {
    padding: 60px;
    width: 50%;
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

.logo {
    height: auto;
    width: 100%;
    max-height: 500px;
}

hr {
    margin: 50px 0
}

.main-headline {
    font-size: 5rem;
}

h1 {
    font-family: "Poetsen One";
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
}

h2, h3 {
    color: white;
    font-family: "Poetsen One";
}

ul li {
    color: white;
}

ul {
    margin-bottom: 1rem;
}

.nav {
    display: flex;
    list-style: none;
    padding-inline-start: 0;
    justify-self: flex-end;
    margin-top: 50px;
    margin-bottom: 0;
}

.nav li a {
    color: var(--primary-color);
    font-weight: 400;
    padding: 0.5rem;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 2rem;
}

.entry p {
    max-width: 710px;
    font-size: 1.125rem;
    line-height: 2.5rem;
}

.entry strong {
    color: var(--primary-color);
    font-family: "Poetsen One";
}

a {
    color: white;
    font-weight: 600;
    font-family: "Poetsen One";
}

.btn {
    display: inline-block;
    font-family: "Poetsen One";
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    text-align: start;
    font-weight: 600;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
    transition: 0.5s;
}

.btn-white {
    border: 4px solid white;
}

.content-block {
    background-color: var(--dark);
    min-height: calc(100vh - 60px);
    padding: 30px;
}

.bg-primary {
    background-color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 0;
}

.container h1, .container p {
    color: white;
    text-align: start;
    margin-bottom: 2rem;
}

.evi-image-wrapper {
    width: 100%;
    text-align: center;
}

.evi-image {
    border-radius: 100%;
    margin: 60px 0;
    max-width: 100%;
    min-width: 500px;
}

.about-evi-wrapper {
    box-sizing: border-box;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.about-evi {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.about-evi-text {
    margin-right: 60px;
}

.about-evi h2 {
    font-size: 2.5rem;
}

.about-evi p {
    font-size: 1.125rem;
    line-height: 2.5rem;
}

.about-evi strong {
    font-weight: 600;
    font-family: "Poetsen One";
}

@media (max-width: 900px) {
    .entry {
        flex-direction: column;
    }
    .left-side {
        width: calc(100% - 60px);
        height: calc(50vh - 60px);
    }
    .right-side {
        min-height: calc(50vh - 60px);
        padding: 30px;
        width: calc(100% - 60px);
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    .logo {
        max-height: 40vh;
        max-width: 400px;
        margin-right: 40px;
    }
    h1 {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    p {
        margin-bottom: 30px;
    }
    .nav {
        margin-bottom: 0;
    }
    .content-block {
        padding: 20px;
        min-height: calc(100vh - 40px);
    }
    .evi-image {
        min-width: auto;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .about-evi {
        flex-direction: column-reverse;
        padding: 0 30px;
    }
    .about-evi-text {
        margin: 0;
    }
}

.fade-in {
    animation: fade-in 1s;
    opacity: 1;
}

.fade-up {
    animation: fade-up 1s;
    opacity: 1;
    transform: translate(50px 0);
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}