* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-color: #ffffff;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  font-style: normal;
}

.header > h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 72px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000000;
  margin: 0;
  animation: comingUp 2s ease-out;
}

.header > p {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #666666;
  margin: 20px 0 0 0;
}

@keyframes comingUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) {
  .header > h1 {
    font-size: 60px;
  }
  .header > p {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .header > h1 {
    font-size: 40px;
  }
  .header > p {
    font-size: 16px;
  }
}
