html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}

#header-title {
  padding: 200px 60px;
  background-color: #303030;
  color: #ffffff;
}
#title > h1,
p {
  margin-top: 0px;
  margin-bottom: 20px;
}

h1 {
  font-size: 60px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 32px;
}
#header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 160px;
  background-color: #f9f9f9;
}
.numbers > h2,
p {
  margin-top: 0px;
  margin-bottom: 0px;
}

main {
  display: flex;
  align-items: center;
  padding: 80px 50px;
  gap: 64px;
}

#main-title p {
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0px;
  vertical-align: middle;
}
#main-img {
  width: 500px;
  height: 600px;
}

footer {
  background-color: #303030;
  color: white;
  padding: 90px 248px;
}
form {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
input {
  width: 508px;
  border: none;
  margin-top: 50px;
  border-radius: 6px;
  padding: 20px 30px;
  font-size: 16px;
}
button {
  font-size: 20px;
  font-weight: 700;
  margin-top: 80px;
  width: 286px;
  background-color: #c07212;
  color: #ffffff;
  border-radius: 10px;
  border: none;
  padding: 20px;
}
button:hover {
  transition: ease-in-out 0.2s;
  color: #ffffffa9;
  background-color: #c0721296;
}
