@font-face{
    font-family:"Inter";
    src:url("./Inter-Regular.woff2") format("woff2"),url("./Inter-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face{
    font-family:"Inter";
    src:url("./Inter-Bold.woff2") format("woff2"),url("./Inter-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}
@font-face{
    font-family:"Anton";
    src:url("./Anton-Regular.woff2") format("woff2"),url("./Anton-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
:root {
    --primary-font: 'Inter', arial, helvetica, sans-serif;
    --secondary-font: 'Anton', arial, helvetica, sans-serif;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
body {
    background: #000;
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-size: 16px;
}
header {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 99px;
}
header img {
    display: block;
    width: 100%;
    max-width: 500px;
}
main {
    display: block;
    background: #F2F2F2;
    padding: 40px;
    min-height: 50vh;
}
section {
    display: block;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}
section h1 {
    font-size: 2rem;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}
section h2,section h3,section h4,section h5,section h6 {
    font-size: 1.2rem;
    font-family: var(--secondary-font);
    text-transform: uppercase;
}
section p {
    margin-bottom: 1em;
    line-height: 1.4rem;
}
section p a {
    color: #000;
    font-weight: bold;
}
section p a:hover {
    color: #000;
    text-decoration: none;
}
.menu {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu li {
    background: #fff;
    font-family: var(--secondary-font);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1px;
}
.menu li a {
    color: #000;
    text-decoration: none;
    padding: 16px;
    display: block;
}
.menu li a:hover {
    text-decoration: underline;
}
footer {
    display: flex;
    color: #fff;
    padding: 16px;
    height: 86px;
    align-items: center;
    justify-content: center;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: normal;
    text-transform: uppercase;
}
.btn-primary {
    background: #000;
    color: #eee;
}
.btn-primary:hover {
    color: #fff;
    background: #333;
}