﻿@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

html {
    min-height: 100%;
}

body {
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    color: #000;
    font-weight: 400;
}

#wrapper {
    border: solid 3px #000;
    max-width: 575px;
    margin: 1rem auto;
    padding: 12px 10px 0;
    background-color: #fff;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #0085C9;
    font-weight: 700;
    font-size: 21px;
    margin: 0 0 10px;
    line-height: 23px;
    text-align: center;
}

h2 {
    text-align: center;
    font-weight: 700;
    color: #0085C9;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

p {
    margin-bottom: 10px;
    hyphens: auto;
    text-align: justify;
}

span {
    white-space: nowrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

@media screen and (max-width: 573px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 1rem;
    }

    :is(p, h1) {
        hyphens: auto;
    }

    p {
        text-align: left;
    }
}