* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Roboto;
}

.hero-secondary-text {
  font-size: 18px;
  color: #e5e7eb;
}

.wrapper .header {
  background-color: #1F2937;
  color: white;
}

.wrapper .header .navigation {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.wrapper .header .navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.wrapper .header .navigation ul li a {
  font-size: 18px;
  text-decoration: none;
  color: white;
}

#header-logo {
  font-size: 24px;
  color: #f9faf8;
}

.wrapper .header .banner {
  height: 500px;
  padding: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.wrapper .banner .about-head {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

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

#image-placeholder {
  width: 500px;
  height: 250px;
}

#hero-main-button {
  background-color: #3882f6;
  font-weight: 600;
  font-size: 18px;
  color: white;
  padding: 10px 30px;
  border-radius: 10px;
  border: none;
}

.wrapper .content #random-header {
  text-align: center;
  padding: 10px;
  margin: 20px 0;
}

.wrapper .content .random-info {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.wrapper .content .random-info .box-container {
  width: 200px;
}

.wrapper .content .random-info .box-container .box {
  border: 5px solid #3882f6;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  margin-bottom: 5px;
}

.wrapper .content .random-info .box-container p {
  text-align: center;
}

.wrapper .content .quote {
  background-color: #e5e7eb;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wrapper .content .quote p {
  color: #1F2937;
  font-size: 36px;
  width: 800px;
  font-style: italic;
}

.wrapper .content .quote #author {
  font-size: 27px;
  text-align: end;
  font-style: normal;
}

.content .signup {
  padding: 30px;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content .signup .signup-container {
  height: 150px;
  width: 1000px;
  background-color: #3882f6;
  border-radius: 10px;
  color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.content .signup .signup-container div {
  padding: 50px;
}

.content .signup .signup-container #signup-button {
  padding: 10px 30px;
  color: #e5e7eb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background-color: #3882f6;
  font-weight: bold;
}

.wrapper .footer {
  background-color: #1F2937;
  margin: auto;
  text-align: center;
  padding: 50px;
  color: #e5e7eb;
}

