* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  max-width: 1600px;
  margin: 0 auto;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
}
.open-sans-font {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
}
.btn {
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 5px;
  background-color: #fd6e0a;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #3498db;
  box-shadow: 0 6px 20px rgba(223, 219, 216, 0.4);
}
.sectionHeading {
  max-width: 827px;
  text-align: center;
  margin: 0 auto;
}
