*,
*::before,
*::after {
  box-sizing: border-box;
  margin-left: 30px;
  margin-right: 30px;
}

body {
  font-family: Roboto, sans-serif;
}

.nav {
  background-color: #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  font-size: 18px;
  color: #e5e7eb;
  list-style-type: none;
  text-decoration: none;
  margin: 0px;
  padding: 0;
  display: flex;
  gap: 8px;
}

a:link {
  color: #3882f6;
}

a:visited {
  color: aqua;
}

a:hover {
  color: #f9faf8;
}

.logo {
  display: flex;
  justify-content: flex-start;
}

.logo img {
  height: 60px;
  width: 60px;
  display: inline;
}

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

.hero {
  background-color: #1f2937;
  display: flex;
}

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

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

.hero-text button {
  background-color: #3882f6;
  color: #e5e7eb;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid #3882f6;
  padding: 10px 20px;
}

.hero img {
  height: 300px;
  width: 600px;
  margin: 20px;
}

.information .title {
  text-align: center;
  font-size: 36px;
  font-weight: bolder;
  color: #1f2936;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.gallery img {
  width: 100px;
  height: 100px;
}

.technology {
  max-width: 200px;
}

.quote {
  background-color: #e5e7eb;
  padding: 40px;
}

blockquote {
  font-size: 36px;
  font-weight: lighter;
  font-style: italic;
  color: #1f2937;
  margin: 40px;
}

figcaption {
  text-align: right;
}

.call-to-action {
  background-color: #3882f6;
  color: #e5e7eb;
  margin: 60px 200px;
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #3882f6;
}

.call-to-action button {
  background-color: #3882f6;
  color: #e5e7eb;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid #e5e7eb;
  width: 120px;
  padding: 10px;
}

#call-to-action-title {
  font-weight: bolder;
}

.footer {
  background-color: #1f2937;
  text-align: center;
  color: #e5e7eb;
  margin: 20px;
  padding: 10px;
}
