* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  font-family: roboto;
}

.section-one {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #1f2937;
  gap: 50px;
}

.header {
  display: flex;
  justify-content: space-around;

  align-items: center;
}

.header-logo {
  font-size: 24px;
  color: #f9faf8;
  flex: 0 0 30vw;
}

.right-link {
  display: flex;
  gap: 20px;
  flex: 0 0 30vw;


}

a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 18px;
}

.hero {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10vw;
  padding-bottom: 100px;
}

.hero-content {
  flex: 0 0 30vw;
  align-self: flex-start;
  display: flex;
  flex-flow: column wrap;
}

.hero-image {
  flex: 0 0 40vw;
  background-color: #6d747d;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9faf8;
}

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

.hero-subtext {
  font-size: 18px;
  color: #E5E7EB;
}

.sign-up {
  color: #E5E7EB;
  background-color: #3882F6;
  border-color: #3882F6;
  width: 100px;
  border-radius: 4px;
}

.section-two {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.information-header {
  font-size: 36px;
  color: #1F2937;
  font-weight: 900;
  margin: 30px;
}

.information-case {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 10vw;
  padding-bottom: 100px;
}

.information {
  flex: 0 0 10vw;
  display: flex;
  flex-flow: column nowrap;
}

.info-img {
  border: 3px solid #3882F6;
  height: 10vw;
  width: 10vw;
  border-radius: 8px;
}

.section-three {
  flex: 1 1 auto;
  background-color: #E5E7EB;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  padding: 100px;
}

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

.quote-author {
  font-size: 24px;
  font-style: bold;
  align-self:last baseline;
  padding: 10px;
}

.section-four {
  align-self: center;
  background-color: #3882F6;
  width: 50vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  margin: 100px;
  border-radius: 8px;
}

.call {
  display: flex;
  flex-flow: column wrap;
}

.call-main {
  color: #f9faf8;
  font-size: 24px;
  font-weight: 800;
}

.call-sub {
  color: #f9faf8;
  font-size: 18px;
}

.footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1F2937;
  padding: 20px;
  color:#f9faf8;
}

.f-button {
  font-size: 18px;
  color: #e5e7eb;
  width: 100px;
  background-color: #3882F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}