html,
body {
  background-color: #000;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 100;
  height: 100vh;
  overflow: auto;
  padding: 0;
  margin: 0;
}
div#outer {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  height: 100vh;
}
div#menu {
  position: absolute;
  right: 10px;
  top: 18px;
}
a {
  color: #7a7a7a;
  text-decoration: none;
}
div#menu > a,
div#sub-links > a {
  letter-spacing: 0.1rem;
  padding: 0 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
a#foot-links {
  text-transform: uppercase;
}
div#inner {
  text-align: center;
}
div#main-title {
  font-size: 84px;
  margin-bottom: 30px;
}
div#footer {
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
}
div#footer > a {
  text-decoration: dotted;
}
.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.close {
  height: 20px;
  background-color: #7a7a7a;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
}