@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,900;1,300&display=swap");

body {
  box-sizing: border-box;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  margin: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

button.primary {
  background: #3882f6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 32px;
  font-size: 18px;
}

button.primary.outline {
  background: transparent;
  color: #e5e7eb;
  border: 2px solid #e5e7eb;
}

.figure {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 250px;
}

.figure .caption {
  color: #1f2937;
  font-size: 18px;
  width: 200px;
}

.header {
  background: #1f2937;
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px 16px;
}

.header * {
  flex-shrink: 0;
}

.header .logo {
  display: flex;
  font-size: 24px;
  font-weight: 900;
}

.header .nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
}

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

.footer {
  background: #1f2937;
  color: #e5e7eb;
  font-size: 18px;
  text-align: center;
  padding: 32px;
}

.section.initial {
  background: #1f2937;
  display: flex;
  padding: 64px 16px 128px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 16px;
}

.section.initial .main-content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section.initial .main-content .main-text {
  color: #f9fafb;
  font-size: 48px;
  font-weight: 900;
}

.section.initial .main-content .secondary-text {
  font-size: 18px;
  color: #e5e7eb;
}

.section.info {
  padding: 64px 16px 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.section.info .main-text {
  font-size: 36px;
  font-weight: 900;
  color: #1f2937;
}

.section.info .figure-container {
  display: flex;
  justify-content: space-around;
}

.section.customer-stories {
  background: #e5e7eb;
  padding: 128px 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.section.customer-stories .quote {
  max-width: 900px;
}

.section.customer-stories .quote .text {
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
}

.section.customer-stories .quote .citation {
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.section.signup-ad {
  margin: 128px auto;
  border-radius: 16px;
  background: #3882f6;
  padding: 48px 128px;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}

.section.signup-ad .main-content .main-text {
  color: #f9fafb;
  font-weight: 700;
  font-size: 18px;
}

.section.signup-ad .main-content .secondary-text {
  color: #e5e7eb;
  font-size: 18px;
}

.placeholder-img-1 {
  background-color: #6d747d;
  width: 600px;
  height: 300px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #e5e7eb;
}

.placeholder-img-2 {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border: 4px solid #3882f6;
  border-radius: 18px;
}
