@import url("https://fonts.googleapis.com/css?family=Raleway:400,700,800");

/* Reset */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: #000000;
  color: #FFFFFF;
  font-family: "Raleway", Helvetica, sans-serif;
}

/* Section centering */
#one {
  min-height: 100vh;
  display: flex;
  align-items: center;      /* vertical */
  justify-content: center;  /* horizontal */
  text-align: center;
}

/* Content width */
.container {
  max-width: 35rem;
  padding: 1rem;
}

/* Typography */
h2 {
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Links */
a {
  color: #59ff8b;
  text-decoration: none;
  display: inline-block;
  margin: 0.25rem 0;
}

a:hover {
  text-decoration: underline;
}
