body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 385px 100px;
  background-color: #1f2937;
  color: #e5e7eb;
  font-size: 18px;
  font-weight: 1000;
  justify-content: space-between;
}
#header img {
  font-size: 24px;
  font-weight: 1000;
}
.header_links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}
a {
  text-decoration: none;
  color: #f0faf8;
  font-weight: 1;
}
.content {
  display: flex;
  flex-direction: column;
}

/* content 1 */
.contentbox1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  background-color: #1f2937;
}
.contentbox1 img {
  width: 500px;
  height: 200px;
  display: inline-block;
  color: #e6edf6;
  background-color: grey;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentbox1 div {
  padding-bottom: 150px;
}
.contentbox1 p {
  font-size: 14px;
  color: #f0faf8;
  max-width: 400px;
  margin-top: 0px;
  margin-bottom: 8px;
}
.contentbox1 h1 {
  font-size: 32px;
  margin-bottom: 0px;
  margin-top: 0px;
  color: #ffffff;
  font-weight: 1000;
  max-width: 400px;
}
button {
  background-color: #4487e6;
  color: #f0faf8;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 1000;
}
/* content 2 */
.contentbox2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 1000;
  font-size: 12px;
  padding: 0px 200px;
}
.image_text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 12px;
  color: #1f2937;
}
.image_text p {
  max-width: 141px;
  text-align: center;
}
.image_text img {
  width: 141px;
  height: 141px;
  border: 1px solid #1d1d1d;
  border-radius: 8px;
}
/* content 3 */
.contentbox3 {
  padding: 100px 50px;
  background-color: lightgray;
}
.contentbox3 p {
  font-size: 32px;
  font-style: italic;
  font-weight: lighter;
  max-width: 850px;
  margin: auto;
}
.contentbox3 span {
  font-size: 22px;
  font-weight: 1000;
  display: block;
  text-align: right;
  font-style: normal;
}

/* content 4 */
.contentbox4 {
  padding: 80px 200px;
}

.contentbox4 div {
  display: flex;
  margin: auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 150px;
  border-radius: 8px;
  background-color: #4487e6;
  padding: 20px 0px;
  max-width: 1000px;
}
.contentbox4 p {
  max-width: 800px;
  color: #e6edf6;
}
.contentbox4 span {
  font-size: 32px;
  font-weight: 1000;
  color: #ffffff;
}
.contentbox4 button {
  border: 2px solid #f0faf8;
  padding: initial 80px;
}

/* footer */
#footer {
  text-align: center;
  padding: 20px;
  color: white;
  background-color: #00122c;
}
