@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --white: #ffffff;
  --red: #e84545;
  --black:#1f2029;
  --grey:#ccc;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body{
	font-family: 'Roboto', sans-serif;
	background-color: var(--black);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
h1:before {
    display: inline-block;
    margin: 0 20px 8px 0;
    height: 2px;
    content: " ";
    background-color: #D61841;
    width: 50px;
}
h1 {
  font-family: "Libre Baskerville", serif;
  color: var(--white);
  font-size:3em;
}
a {
  color: var(--grey);
}
a:hover {
  color: var(--red);
}
.button {
   background-color: var(--red);
    color:var(--white);
    padding:15px 20px;
    text-decoration:none;
    font-size:20px;
        -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.button:hover {
   background-color: var(--white);
    color:var(--black);
}
p{
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
}
p.big{
  font-size: 26px;
  color: var(--white);
    margin:0 0 45px 0;
}
.section {
  width: calc(100% - 50px);
  margin: auto;
  max-width: 1050px;
  z-index: 3;
}


header {
	width:100%;
	align-items: center;
    vertical-align: middle;
   justify-content: center;
	z-index: 1000;
}
header img {
	height: 100px;
	width: auto;
    vertical-align: middle;
    margin-top:200px;
}
header, footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	color: var(--white);
	height:100px;
}
footer {
	margin-top: auto;
}
footer ul {
	list-style:none;
    margin-block-start: 0em;
    margin-block-end: 0em;
	padding:10px;
	width: 100%;
	text-align: center;
}
footer ul li {
    display: inline;
    text-align: center;
    padding: 2px;
}
footer ul > li:not(:last-child):after{
    content: ' - ';
}
