* {
  /* changed scrollbar color to fit the background color (for most browsers) */
  scrollbar-color: gray black;
}

body {
  display: flex;
  flex-direction: column;
  background-color: black;
  color: white;
}

ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}

a {
  text-decoration: none;
  color: #3b82f6;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: gray;
  width: 400px;
  height: 200px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  gap: 128px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  width: 600px;
}

.signup-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #1e40af;
  color: white;
  width: 128px;
  height: 32px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.body {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card {
  border: solid royalblue;
  width: 200px;
  height: 150px;
  border-radius: 16px;
}

.cards {
  display: flex;
  gap: 40px;
}

.text {
  margin-top: 20px;
  width: 200px;
  text-align: center;
}

.quote {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px white solid;
  border-radius: 16px;
}

.quote-author {
  align-self: flex-end;
}

.call-to-action-box {
  margin-top: 48px;
  display: flex;
  background-color: royalblue;
  width: 800px;
  justify-content: space-between;
  padding: 16px;
  align-items: center;
  border-radius: 16px;
}

.call-to-action {
  display: flex;
  justify-content: center;
}

.footer {
  display: flex;
  margin-top: 48px;
  justify-content: center;
  align-items: center;
}
