* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  color: #000000;
  background-color: #ffffff;
  animation: fadeIn 1.5s cubic-bezier(0.25, 0.5, 0.5, 1.0);
  font-family: "Inter", sans-serif;
  margin: 50px;
  min-height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}

a {
  color: #000000;
  user-select: none;
}

body.dark-mode {
  color: #ffffff;
  background-color: #000000;
}

body.dark-mode a {
  color: #ffffff;
}

body.dark-mode img {
  filter: brightness(0) invert(1);
}

::selection {
  color: #ffffff;
  background-color: #000000;
}

html {
  height: 100%;
}

header {
  border-bottom: 1px solid;
}

h1 {
  padding-top: 100px;
  padding-bottom: 4rem;
  font-size: 128px;
  font-weight: 550;
  letter-spacing: -5px;
  line-height: 110px;
}

h2 {
  padding-top: 50px;
  font-size: 28px;
  font-weight: 450;
  letter-spacing: -1px;
}

h3 {
  font-size: 24px;
  font-weight: 450;
  letter-spacing: -1px;
}

p {
  padding-top: 100px;
  font-size: 20px;
  font-weight: 450;
  letter-spacing: -1px;
}

footer {
  margin-top: auto;
  padding-top: 50px;
  margin-bottom: 50px;
}

footer a:last-of-type {
  float: right;
  cursor: pointer;
  font-size: 32px;
}

@keyframes fadeIn {
  from {
    transform: translateY(-10px);
    filter: blur(10px);
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  body {
    margin: 25px;
    min-height: calc(100% - 25px);
  }

  h1 {
    padding-top: 50px;
    font-size: 80px;
    letter-spacing: -3px;
    line-height: 70px;
  }

  p {
    padding-top: 50px;
  }

  footer {
    margin: auto 0px 25px 0px;
  }

  footer a {
    font-size: 16px;
    font-weight: 450;
    letter-spacing: -1px;
  }
}
