header {
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.flex {
  display: flex;
  flex-direction: row;
}

ul {
  list-style: none;
  justify-content: space-between;
}

body {
  font-family: "Quicksand", sans-serif;
  margin: 0;
}

#intro h1 {
  font-size: 60px;
  font-weight: 400;
  margin: 0;
  border-bottom: 1px solid black;
  width: fit-content;
  padding-right: 26px;
  padding-bottom: 26px;
}

#intro h2 {
  font-weight: 400;
  width: 50%;
}

#intro {
  gap: 20px;
  margin-top: 25px;
}

#services {
  background-color: #282828;
  color: white;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 25px;
}

#services ul li {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
}

#services ul {
  flex-wrap: wrap;
}
.icon {
  font-size: 80px;
}

footer {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-2 {
  font-size: 45px;
  color: #2c981d;
}

.button {
  color: white;
  background-color: #2c981d;
  border-radius: 20px;
  padding: 10px 25px;
  font-weight: bold;
}

a {
  text-decoration: none;
}

.align-right {
  text-align: end;
  padding-top: 40px;
}

@media (max-width: 768px) {
  #intro {
    flex-direction: column-reverse;
  }
  #intro img {
    width: 100%;
  }
  #services ul {
    justify-content: center;
    gap: 15px;
  }
  header img {
    width: 100%;
  }
}
