﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot');
  src: 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-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot');
  src: 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');
}


html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
    color: #231f20;
    font-weight: 400;
}

#wrapper {
    margin: 0.75rem auto;
    padding: 1rem 1rem 0;
    max-width: 580px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    border: solid 2px #a4cf57;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

header {
    margin: 0 0 0.625rem;
    border-bottom: 2px solid #a4cf57;
    padding-bottom: 6px;
}

footer {
    margin: 0.4375rem -1rem 0;
    padding: 10px 16px;
    background: #a4cf57;
    color: #fff;
}

.flexbox {
    display: flex;
    gap: 50px;
    margin-top: 6px;
    font-size: 16px;
}

article p {
    margin-bottom: 6px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

h1 {
    margin: 0.3125rem 0;
    font-size: 23px;
    line-height: 1.2;
}

h1 span {
    font-size: 70%;
}

h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin: 0.375rem 0 0;
}

h2 span {
    font-weight: 400;
}

ul {
    margin: 0 0 0.375rem;
    list-style: none;
}


ul li {
    padding-left: 12px;
}

li:before {
    text-indent: -12px;
    content: "\2022";
    color: #242021;
    float: left;
    font-size: 22px;
    font-family: Arial, sans-serif;
}

@media screen and (max-width: 578px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    .flexbox {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    footer p {
        text-align: center;
    }
}