* {
  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: 0 20px;
  width: 100%;
  margin: auto;
  border: #fbab40;
  height: 100vh;
  background-color: #242628;
}

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

.header h3 {
  text-align: center;
  color: #ff9e40;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 36px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.header > h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.header > p {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 160%;
  text-align: center;
  color: #d1d5db;
  flex-grow: 0;
  margin: 16px 0px;
  max-width: 700px;
}

.learn-more > button {
  background: #f6821f;
  border-radius: 4px;
  border: none;
  width: 180px;
  margin-top: 40px;
  height: 55px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  cursor: default;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .header > h1 {
    font-size: 48px;
  }

  .header > p {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  body {
    width: 100vw;
  }

  .header > h1 {
    font-size: 2.2rem;
  }

  .header > p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}
