* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #1d3b2a;
  height: 100vh;
  width: 100vw;
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.logo{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}
.logo>p{
  font-size: 20px;
}
.container{
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.badge {
  padding: 4px 16px;
  border: 1px solid #62b86a;
  border-radius: 20px;
  color: #62b86a;
  text-transform: uppercase;
  font-size: 14px;
}

h1 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #f4ecd6;
  text-wrap:balance; 
  text-align: center;
  display: flex;
  flex-direction: column;
}
.highlight{
    text-decoration: underline;
    text-decoration-color: #62b86a;
    color: #e8b23f;
}
p{
    color:#bcc4ac;
    font-size: 16px;
}

.footer{
    /* align-self: flex-end; */
    font-size: 14px;
    font-weight: 300;
}