.clear {
  clear: both;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
header {
  display: block;
  border: solid #0B2035;
  border-width: 20px 0 0 0;
}
header img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 30px auto 30px auto;
}
section.main {
  width: 90%;
  display: block;
  margin: auto;
}
section.main .menu {
  display: block;
  width: 250px;
  margin: auto;
}
section.main .menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 45px;
  width: 120px;
  height: 44px;
  background-color: #DE241E;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 10px auto 10px auto;
  background-image: url('images/network-check.svg');
  background-size: 25px auto;
  background-position: 10px center;
  background-repeat: no-repeat;
}
section.main .menu a:hover {
  background-color: #0193DE;
}
footer {
  display: block;
  position: absolute;
  z-index: 10;
  bottom: 0;
  background-color: #0B2035;
  width: 100%;
}
footer .copy {
  display: block;
  padding: 10px;
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
}
