@font-face {
    font-family: 'NORD';
    src: url('fonts/NORD/NORD-Black.otf');
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'NORD';
    src: url('fonts/NORD/NORD-Bold.otf');
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'NORD';
    src: url('fonts/NORD/NORD-Regular.otf');
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'NORD';
    src: url('fonts/NORD/NORD-Black.otf');
    font-weight: 300;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'NORD';
    src: url('fonts/NORD/NORD-Medium.otf');
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'NORD';
    src: url('fonts/NORD/NORD-Thin.otf');
    font-weight: 100;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Black.otf');
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Bold.otf');
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Extrabold.otf');
    font-weight: 800;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Light.otf');
    font-weight: 300;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Medium.otf');
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Regular.otf');
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Thin.otf');
    font-weight: 100;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Ultralight.otf');
    font-weight: 200;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Plain';
    src: url('fonts/Plain/Plain-Ultrathin.otf');
    font-weight: 100;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'Fascino';
    src: url('fonts/Fascino/Fascino-Bold.ttf');
    font-weight: 700;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1C4700;
}

.page {
    display: flex;
    flex-direction: column;
    padding: 70px 0;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
}

.logo {
    display: block;
    text-align: center;
    margin: 0 auto 140px;
}

.logo svg {
    width: 66px;
    margin-bottom: 6px
}

.logo h1 {
    color: #7AB352;
    font-family: 'NORD';
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.text p {
    font-family: "Plain";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: white;
    margin-bottom: 20px;
}

.text p:last-child {
    margin-bottom: 0px;
}

.text p a {
    color: white;
    transition: .3s ease color;
}

.text p a:hover {
    color: #7AB352;
}

.content {
    width: calc(100% - 50px);
    max-width: 496px;
    margin: 0 auto;
    display: block;
}

h2 {
    color: white;
    font-family: "NORD";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

@media screen and (max-width: 550px) {
    .page {
        padding: 50px 0;
    }

    h2 {
        margin-bottom: 50px;
    }

    .logo {
        margin: 0 auto 75px;
    }
}