body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-color: #f8f5ea;
  font-family: "Figtree", system-ui;
  width: 100vw;
  color: white;
}

h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -2px;
}

h2 {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  column-gap: 60px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5;
  font-size: 0.9rem;
}

nav a:hover {
  text-decoration: underline;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 100px;
  background-color: rgb(18, 30, 23);
  padding: 30px 30px 150px 30px;
  clip-path: ellipse(90% 100% at top);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#logo {
  width: 15%;
}

.figtree-400 {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.figtree-500 {
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.figtree-700 {
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.hero {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  justify-content: center;
  align-items: center;
  align-items: center;
  text-align: center;
}

.title {
  color: #f5ff22;
  margin-bottom: 30px;
}

.sub-title {
  color: white;
}

.cta {
  display: flex;
  flex-direction: row;
  column-gap: 5px;
  justify-content: center;
  width: 90%;
}

input {
  color: white;
  background-color: rgb(29, 30, 43);
  border: 1px solid rgb(92, 92, 92);
  border-radius: 8px;
  height: 50px;
  padding: 0 20px;
  max-width: 400px;
  width: 90%;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

button {
  height: 30px;
  border-radius: 5px;
  border: 1px solid white;
  color: white;
  background-color: transparent;
  font-size: 16px;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

button:hover {
  cursor: pointer;
  color: #121e17;
  background-color: white;
}

a img {
  height: 60px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
  width: 100%;
}

section {
  width: 100%;
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: black;
}

section h2 {
  padding: 0px 12px 0px 12px;
}

section > p {
  padding: 30px 12px 0px 12px;
  color: rgba(0, 0, 0, 0.5);
}

.planned-updates-grid-extra-info-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.planned-updates-extra-info {
  padding: 0px 12px 0px 12px;
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  font-size: 0.7rem;
}

.planned-updates-grid {
  padding: 0px 12px 0px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.planned-updates-grid-child {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 2px solid rgba(18, 30, 23, 0.35);
  background-color: rgba(18, 30, 23, 0.05);
}

.nav-desktop {
  display: none;
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.9rem;
    letter-spacing: -1px;
  }

  a img {
    height: 40px;
  }

  header {
    row-gap: 100px;
    clip-path: ellipse(140% 100% at top);
    padding: 12px 12px 100px 12px;
  }

  #logo {
    width: 30%;
  }

  .nav-desktop {
    display: none;
  }
}
