/*
 * Copyright (c) 2022.
 *
 * This file is part of the TYPO3 CMS extension by PAGE AND PAPER.
 *
 * It is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, either version 2
 * of the License, or any later version.
 */

/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(''),
    url('fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/montserrat-v25-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-600 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(''),
    url('fonts/montserrat-v25-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/montserrat-v25-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* montserrat-700 - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
  font-display: swap;
    src: local(''),
    url('fonts/montserrat-v25-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/montserrat-v25-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

* {
    box-sizing: border-box;
}

*:not(ul) {
    padding: 0;
    margin: 0;
}

html, body {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    background-color: #F2F2F2;
    line-height: 170%;
}

body {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 1544px;
    margin: 0 auto;
    min-height: 100vh;
    padding: 0 2rem;
}

body > * {
    width: 100%;
}

header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0 3rem;
}

main {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 3rem;
}

footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: auto 0 5rem 0;
}

h1 {
    margin-bottom: 3rem;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4, h5 {
    margin-top: 1rem;
}

p {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 1rem;
    font-style: italic;
}

.btn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    color: #A0A0A0;
    padding: 1rem 2rem;
    transition: all 200ms ease;
}


.btn-text:hover {
    color: #000;
}

.btn-primary {
    font-weight: 700;
    font-size: calc(20rem / 18);
    background-color: black;
    color: white;
    padding: 1rem 4rem;
}

.btn-primary:hover {
    background-color: rgba(0,0,0,.5);
}

.logo {
    width: 222px;
    max-width: 40%;
}

.logo svg {
    width: 100%;
    height: auto;
}

.head-image {
    width: 100%;
    max-width: 800px;
    margin-bottom: 3rem;
}

.head-image svg {
    width: 100%;
    height: auto;
}

.note {
    width: 100%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0, 0.16);
    background-color: white;
    padding: 2.25rem 1.75rem;
    margin-bottom: 3rem;
}

.note .title {
    font-weight: 700;
    margin-bottom: .5rem;
}

@media screen and (max-width: 765px) {
    body {
        font-size: 16px;
    }

    .btn {
        font-size: .9rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}