@font-face {
  font-family: 'made';
  src: url("./made.otf");
}

*::-moz-selection {
  background-color: #267452;
}

*::selection {
  background-color: #267452;
}

h2, p {
  opacity: 0.7;
}

body {
  margin: 0;
  height: 100vh;
  width: 100%;
  color: #eee;
  background-color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Cormorant', serif;
  position: relative;
}

body .background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./noise.gif");
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.1;
  pointer-events: none;
}

a {
  color: #eee;
  text-decoration: none;
}

p {
  margin: 0;
}

header {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  header {
    font-size: 0.8rem;
  }
}

header > * {
  width: 30%;
}

footer {
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 0.8rem;
  }
}

footer .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

footer .links a {
  border-bottom: 1px solid red;
}

#content {
  max-width: 700px;
  font-family: 'made';
  text-align: center;
}

@media screen and (max-width: 768px) {
  #content {
    max-width: 90%;
  }
}

#content h1 {
  font-size: 3rem;
  font-weight: lighter;
}

@media screen and (max-width: 768px) {
  #content h1 {
    font-size: 1.2rem;
  }
}

#content p {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  #content p {
    font-size: 1rem;
  }
}

#cursor {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #267452;
  position: fixed;
  mix-blend-mode: color-dodge;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
  pointer-events: none;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
/*# sourceMappingURL=style.css.map */