body {
  font-family: 'Georgia', serif;
  scroll-behavior: smooth;
}

/* HERO */
.hero {
  height: 100vh;
  background: black;
  color: white;
}

/* SERVICES */
.service-box {
  border: 1px solid black;
  padding: 30px;
  transition: 0.3s;
}

.service-box:hover {
  background: black;
  color: white;
}

/* BUTTON */
.btn-outline-light {
  border-radius: 0;
}

.chair {
  height: 90%;
  width: 65%;
  border-radius: 18px;
}

:hover.chair {
  transform: scale(105%);
}

.font {
  font-size: 22px;
}

.imglogo {
  border-radius: 50%;
  padding: 20px;
  height: 35%;
  width: 35%;
}

:hover.imglogo {
  transform: scale(102%);
  transition: ease-in-out 700ms;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* contact */
.footer-section {
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.d {
  display: flex;
  align-items: center;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: black;
  color: white;
}

.app-buttons img {
  height: 40px;
  margin-right: 10px;
  margin-top: 10px;
}

.footer-bottom {
  line-height: 1.6;
}

@media screen and (max-width: 800px) {
  .chair {
    height: 300px;
    width: 200px;
  }

  .d {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}