#download-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}
#download-buttons .buttons-row {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 600px) {
  #download-buttons .buttons-row {
    flex-direction: column;
    margin-bottom: 2rem;
    align-items: center;
  }
}
#download-buttons .buttons-row a {
  text-decoration: none;
}
#download-buttons .buttons-row button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #046d4d;
  color: #c9c9c9;
  border: none;
  outline: none;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
#download-buttons .buttons-row button svg {
  height: 2rem;
  color: #c9c9c9;
}
#download-buttons .buttons-row button span {
  font-size: 1.1rem;
  font-weight: bold;
}
#download-buttons .buttons-row button:hover {
  background: #058861;
}
#download-buttons .buttons-row button.disabled {
  background: #242424;
  color: rgba(255, 255, 255, 0.2);
}

#features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8rem;
  margin-top: 4rem;
  padding: 0 2rem;
}
@media screen and (max-width: 1000px) {
  #features {
    align-items: stretch;
  }
}
#features .feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 66vw;
}
@media screen and (max-width: 1000px) {
  #features .feature {
    flex-direction: column;
    max-width: unset;
    align-items: stretch;
  }
}
#features .feature .feature-card {
  border-radius: 1rem;
  border: 2px solid #1fc594;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  #features .feature .feature-card {
    align-items: flex-start;
  }
}
#features .feature .feature-card .paper-title {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  #features .feature .feature-card .paper-title {
    text-align: left;
  }
}
#features .feature .feature-card .paper-content {
  max-width: 80%;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  #features .feature .feature-card .paper-content {
    text-align: left;
  }
}
#features .feature .feature-screenshots {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#features .feature .feature-screenshots .feature-screenshot {
  max-width: 33vw;
}
@media screen and (max-width: 1000px) {
  #features .feature .feature-screenshots .feature-screenshot {
    max-width: 100%;
  }
}
#features .feature:nth-child(even) {
  align-self: flex-end;
}
@media screen and (max-width: 1000px) {
  #features .feature:nth-child(even) {
    align-self: initial;
  }
}
#features .feature:nth-child(even) .feature-card {
  order: 2;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  #features .feature:nth-child(even) .feature-card {
    order: initial;
  }
}
#features .feature:nth-child(even) .feature-card .paper-title,
#features .feature:nth-child(even) .feature-card .paper-content {
  text-align: left;
}
#features .feature:nth-child(even) .feature-screenshot {
  order: 1;
}
@media screen and (max-width: 1000px) {
  #features .feature:nth-child(even) .feature-screenshot {
    order: initial;
  }
}

body {
  padding-bottom: 15rem;
}

#hero-section {
  width: 100%;
  height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#hero-section #page-heading {
  font-size: 4rem;
  line-height: 4rem;
  margin: 0;
}
#hero-section #page-subheading {
  margin: 0;
}
#hero-section #about-line {
  font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  max-width: 30%;
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  #hero-section #about-line {
    max-width: unset;
    padding: 0 1rem;
  }
}

#feature-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
#feature-list h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}
#feature-list #features-list-features {
  display: flex;
  flex-direction: column;
  align-items: center;
}