/* outfit-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: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../font/outfit-v11-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  

body {
    background-color: #028EAC;
}

p, a {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.325;
    text-align: center;
    font-size: 48px;
    font-size: clamp(24px,3vw,50px);
    color: white;
}

a {
    text-decoration: none;
}

img {
    max-width: 500px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
    grid-template-areas: ". content .";
}

.container__inner {
    display: flex;
    flex-direction: column;
    grid-area: content;
    margin: 150px 5rem;
}

.logocontainer {
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 12vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo {
    min-width: 250px;
    width: 20vw;
}

.arrow {
    width: 1.5vw;
}

.textcontainer {
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text {
    margin-top: 0;
    margin-bottom: 4.5rem;
}

.link__arrow {
    display: inline-flex;
    width: 7.5rem;
	height: auto;
	transition: transform 0.25s;
}

.link__arrow:hover {
    transform: translateX(15px);
}

.link:hover > .link__arrow {
    transform: translateX(15px);
}


@media screen and (max-width: 1024px) {
    .container {
        grid-template-columns: 0.5fr 9fr 0.5fr;
    }

    .container__inner {
        margin: 50px 0;
    }

    .logocontainer {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 60px;
    }


    .logo {
        min-width: 75px;
        width: 35vw;
    }

    .arrow {
        width: 1rem;
    }

    .link__arrow {
        width: 3rem;
    }

    
}

