@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap");
/* General styles */
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  color: #333;
  background-color: beige;
}

.container2 {
  display: flex;
  align-items: center;
  border-top: #905819 5px;
}

.Photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 2px 5px #333;
}
.Photo img:hover {
  transform: scale(1.02);
  transition: 400ms ease-in-out;
  box-shadow: 0px 3px 5px rgb(71, 71, 71);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  border-top: #905819 5px;
}

/* Header styles */
header {
  background: rgb(144, 88, 25);
  background: linear-gradient(180deg, rgb(144, 88, 25) 87%, rgba(245, 245, 220, 0) 100%);
  padding: 20px;
  position: sticky;
  top: 0;
}
header h1 {
  margin: 0;
  text-align: left;
  color: #fff;
  -webkit-text-decoration: underline #333;
          text-decoration: underline #333;
  text-shadow: #333;
  font-family: "Dancing Script", cursive;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  display: block;
  color: #fff;
  padding: 0 10px;
  text-decoration: none;
  position: relative; /* Add a relative position to the link */
}
header nav ul li a:hover {
  background-color: #f5e399;
  color: #333;
  transition: 400ms;
}
header nav ul li a:hover::after {
  content: ""; /* Add a pseudo-element to create the underline */
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* Home section styles */
.home {
  background-color: beige;
  padding: 50px;
  text-align: center;
}
.home h2 {
  color: #905819;
}
.home p {
  font-size: 18px;
  line-height: 1.5;
}
.home ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home ul li {
  font-size: 16px;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 5px 10px;
  width: 450px;
  background-color: #905819;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}
.home ul li:hover {
  background-color: #f5e399;
  color: #333;
}
@media (max-width: 800px) {
  .home ul li {
    width: 100%;
  }
}

.Photo {
  margin-right: 10px;
}
@media (max-width: 480px) {
  .Photo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.texts {
  margin-left: 10px;
}
@media (max-width: 480px) {
  .texts {
    margin-left: 0;
  }
}

/* Chips section styles */
.chips {
  margin-bottom: 70px;
  margin-top: 30px;
}

.chips-container {
  display: flex; /* Use flexbox /
justify-content: center; / Center the items horizontally /
align-items: center; / Center the items vertically */
  margin: 15px;
}
@media (max-width: 480px) {
  .chips-container {
    flex-wrap: wrap;
  }
}

.chip {
  border: 0px solid beige;
  padding: 20px;
  margin: 10px;
  flex-basis: calc(33.33% - 20px);
  text-align: center;
}
.chip:hover {
  border: 2px solid #905819;
  border-radius: 10px;
  transform: scale(1.01);
  transition: 500ms ease-in-out;
}
.chip img {
  margin: 0;
  max-width: 150px;
}
.chip p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .chip {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .chip {
    flex-basis: 100%;
    margin: 5px;
    padding: 10px;
  }
  .chip img {
    max-width: 100px;
  }
}

/* Footer styles */
footer {
  background: rgb(44, 42, 32);
  background: linear-gradient(0deg, rgb(44, 42, 32) 87%, rgba(44, 42, 32, 0) 100%);
  color: #fff;
  padding: 5px 0;
  text-align: center;
}
footer p {
  margin: 0;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  header h1 {
    font-size: 24px;
  }
  header nav ul li a {
    padding: 0 5px;
  }
  header nav ul li a {
    padding: 0 5px;
  }
  .home ul li {
    width: 100%;
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 800px) {
  header h1 {
    font-size: 36px;
  }
}
@media (min-width: 801px) {
  header h1 {
    font-size: 48px;
  }
}/*# sourceMappingURL=web.css.map */