body {
  background-color: #161616;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  color: #fdfdfd;
  text-align: center;
  font-size: 2vw;
  margin-bottom: 0px;
}

p {
  color: #fdfdfd6a;
  font-family: "inter", sans-serif;
}

a {
  color: #161616;
  background-color: #fdfdfd;
  text-decoration: none;
  font-family: "inter", sans-serif;
  padding: 20px 50px;
  border-radius: 40px;
  margin-top: 20px;
  transition: color 1s ease;
}

a:hover {
  background-color: #fdfdfdcf;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

.logo {
  width: 25vw;
  margin-bottom: 50px;
}

.copyright {
  color: #fdfdfdcf;
  font-size: 12px;
  position: absolute;
  bottom: 25px;
}

@media (max-width: 600px) {
  body {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }

  h1 {
    font-size: 6vw;
    margin-bottom: 10px;
  }

  .logo {
    width: 60vw;
    margin-bottom: 30px;
  }

  .container {
    margin-bottom: 60px;
    padding: 0 10px;
  }

  a {
    padding: 14px 10px;
    font-size: 4vw;
    border-radius: 30px;
    margin-top: 15px;
    display: inline-block;
  }

  .copyright {
    font-size: 10px;
    position: static;
    margin-top: 30px;
    text-align: center;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  h1 {
    font-size: 3vw;
    margin-bottom: 10px;
  }

  .logo {
    width: 40vw;
    margin-bottom: 40px;
  }

  .container {
    margin-bottom: 100px;
    padding: 0 30px;
  }

  a {
    padding: 18px 12px;
    font-size: 2vw;
    border-radius: 35px;
    margin-top: 18px;
  }

  .copyright {
    font-size: 11px;
    bottom: 15px;
  }
}
