@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");

* {
  font-family: "Space Mono", monospace;
  scroll-behavior: smooth;
}

body {
  color: white;
  background: #131313;
}

.cover {
  background: #131313 url(background.png) no-repeat fixed;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: block;
  align-content: center;
  text-align: center;
}

.title {
  color: white;
  font-size: 110px;
  text-decoration: underline;
}

.scrolldown {
  text-decoration: none;
  color: white;
  background: #1f1f1f;
  font-size: 30px;
  position: absolute;
  top: 94%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-content: center;
  display: block;
  text-align: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition-duration: 0.2s;
}

.scrolldown:hover {
  background: #2c2c2c;
}

.content {
  padding: 60px 20%;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  color: aquamarine;
  font-weight: bold;
  cursor: pointer;
}
