main {
  flex: 1;
}

.container {
  width: 80%;
  margin: auto;
}

header {
  background-color: #18b593;
  color: rgb(4, 122, 102);
  text-align: center;

  margin: auto;
  padding: 1px;

  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;

  position: fixed;
  top: 0;
  width: 100%;
  height: clamp(100px, 2vw, 500px);
  z-index: 999;
}
header p {
  margin-top: clamp(1px, 1vw, 3px);
}

.center {
  text-align: center;
  justify-content: center;
  justify-items: center;
}

.content {
  padding-top: 100px;
}