html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  ;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff9aa;
}

.top-menu {
  background-color: #6e6e6e;
}

.navbar {
  align-items: center;
  color: white;
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  padding: 4px 0;
}

.website-title {
  font-size: 20px;
  font-weight: bold;
}

.description {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  padding: 30px 20px;
  background-color: white;
  border-radius: 5%;
}

.description p:nth-child(-1n+3) {
  text-align: start;
}

.description h2 {
  font-size: 36px;
  color: #333;
}

.description p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}

/* .slider-container {
  height: 500px;
} */

.cta-button {
  text-align: center;
  margin-top: 20px;
  border: none;
  border-radius: 25px;
}

.sale-btn {
  display: inline-block;
  padding: 12px 18px;
  font-size: 20px;
  background-color: #ef8772;
  color: black;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.1s;
}

.sale-btn:hover {
  background-color: #fad9cf;
}

a[href^="mailto:"] {
  color: white;
}

footer {
  background-color: #6e6e6e;
  color: white;
  padding: 10px 0;
  text-align: center;
  height: 100%;
}

.contact-info p {
  font-size: 18px;
  margin: 0 0 10px 0;
}

/* .contact-info p:first-child {
  margin: 0;
} */

.contact-info img {
  position: relative;
  top: 10px;
  right: 4px;
}