@charset "utf-8";
@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'); 
}
:root {
    font-size: 14px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333;
    font: 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto 10rem;
    background: url('../images/bg.png') no-repeat top right;
    overflow: hidden;
    box-shadow: -0.1rem 0.1rem 1rem #999;
    padding: 0;
}
strong{
    font-weight: 700;
}
p {
    padding-bottom: 1rem;
}
h1,h2{
    color: #990000;
    font-weight: 400;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2em;
    line-height: 1.1;
    text-align: center;
}
h1 span{
    font-size: 0.7em;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    display: flex;
    justify-content: start;
    gap: 0 0.5rem;
    align-items: center;
    margin-left: -2.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #333;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
    color: #FBBA00;
}
article{
    padding: 2rem 3rem;
}
.button_controls {
    padding: 1rem 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 1.5em;
    border-top: 1px solid #bc0c12;
    background: #fff;
}
.button_controls a:hover {
    background: #D40E14;
}
.button_controls a {
    color: #fff;
    background: #bc0c12;
    padding: 0.5em 1.2em 0.55em;
    border-color: #bc0c12;
    border-radius: 20px;
    font-size: 1.3em;
    line-height: 1.3em;
}
footer{
    display: flex;
    justify-content: start;
    gap: 0 1.5rem;
    position: absolute;
    bottom: 2rem;
    right: 3rem;
}
@media only screen and (max-width: 939px) {
    #wrapper {
        border: none;
        padding: 0;
        margin: 0 auto 10rem;
    }
    p :is(a,span){
        display: inline-block;
    }
    article{
        padding-bottom: 3.5rem;
    }
    footer{
        bottom: 1rem;
        right: 1rem;
    }
}