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

body {
  display: grid;
  place-items: center;
  height: 100vh;
  background-color: black;
  margin: 0rem;
  overflow: hidden;
  align-content: center;
}

h1 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(3rem, 10vw, 10rem);
  color: white;
  border-radius: 0;
  padding: 0 1.5rem;
  margin: 0;
}

h1:hover {
  background-color: red;
  color: black;
}

.ctas {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-block: 2rem;
  text-align: center;
}

.btn {
  color: black;
  background-color: red;
  border: 4px solid red;
  font-family: 'Space Mono', monospace;
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin: .5rem .25rem;
  padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  transition: 0.25s ease-in-out;
  display: inline-block;
  min-width: 6rem;
  max-width: 100%;
}

.btn:hover {
  color: red;
  background-color: transparent;
  transition: 0.25s ease-in-out;
}


/* breakpoint down
@media screen and (max-width: 768px) {
}
*/

/* small screens
@media screen and (max-width: 420px) {
}
*/





/* the end */