@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

@import url("home.css");

@import url("contact.css");

header {
  background: #222222;
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
header > h2 a {
  color: white;
  font-size: 42px;
  text-decoration: none;
}
header > ul.menu {
  list-style: none;
  display: flex;
}
header > ul.menu > li {
  margin: 0 5px;
}
header > ul.menu > li > a {
  padding: 10px 15px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
}
header > ul.menu > li:nth-of-type(1):hover, header > ul.menu > li:nth-of-type(2):hover {
  color: #c41230;
  transition: color 0.3s ease-in;
}
header > ul.menu > li .button {
  margin-left: 15px;
}
body {
  margin: 0;
}

footer {
  background: #222222;
  padding: 30px 0;
}
footer > p {
  display: block;
  margin: auto;
  color: #9e9e9e;
  max-width: 900px;
  text-align: center;
}
h1, h2, h3, h4, h5, h6, p, a, span, div, li {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  margin-block-start: 0;
  margin-block-end: 0;
}
p {
  font-size: 20px;
  font-weight: 300;
}
.button {
  background: #C41230;
  color: white;
  border: solid 3px #C41230;
  transition: all .3s ease-in;
  cursor: pointer;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
}
.button:hover {
  background: transparent;
  color: white;
  border-color: white;
}