body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.margin-adjust {
  margin: 1vh 15vw;
}

.hero,
.footer {
  background-color: #1f2937;
  color: #e5e7eb;
}

.hero {
  display: flex;
  flex-direction: column;
}

.hero__logo {
  font-size: 24px;
  color: #f9faf8;
  font-weight: 900;
}

.hero__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.hero__header-links {
  display: flex;
  flex-direction: row;
}

.hero__header-link {
  margin: 0 10px;
  text-decoration: none;
  color: white;
}

.hero__main {
  margin-top: 8vh;
  margin-bottom: 8vh;
  display: flex;
  height: max-content;
  flex-direction: row;
}

.hero__signup {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.hero__title {
  font-size: 48px;
  font-weight: 900;
  color: #f9faf8;
}

.hero__subtitle {
  font-size: 18px;
  color: #e5e7eb;
}

button {
  margin-top: 5px;
  background-color: #3882f6;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  padding: 5px;
  width: 8vw;
}

.hero__image-box {
  display: flex;
  justify-content: end;
  margin-left: 5vw;
  flex: 1;
}

.hero__image {
  width: 40vw;
  height: 250px;
}

/* */

.info__title {
  margin: 2vh;
  text-align: center;
  font-weight: 900;
  font-size: 36px;
  color: #1f2937;
}

.info__entries {
  margin: 4vh;
  display: flex;
  flex-direction: row;
  gap: 5vw;
}

.info__entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info__image-box {
  flex: 1;
  width: fit-content;
}

.info__image {
  width: 180px;
  height: 180px;
  border-radius: 10px;
}

.info__description {
  margin-top: 1vh;
  color: grey;
}

.testimonial {
  background: #e5e7eb;
}

.testimonial__content {
  padding: 100px;
  display: flex;
  flex-direction: column;
}

.testimonial__quote {
  font-style: italic;
  font-size: 36px;
  color: #1f2937;
  font-weight: 300;
}

.testimonial__author {
  margin-top: 1vh;
  display: flex;
  justify-content: flex-end;
  font-weight: 900;
}

.cta__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between; 
  margin: 8vh 0;
  padding: 50px;
  background-color: #3882f6;
  color: white;
  border-radius: 10px;
}

.cta__title {
  font-weight: bold;
  font-size: 24px;
  margin-left: 10vh;
}

.cta__subtitle {

  margin-left: 10vh;
}

.cta__button {
  font-size: 20px;
  border: 2px solid white;
  margin-right: 10vh;
}

.footer {
  padding: 40px;
  text-align: center;
}
