* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: whitesmoke;
  font-family: "Lora", serif;
}

h1, h2, h3, .drop-btn, .nav-link {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.site-header {
  background-color: #c5a682;
  padding: 20px;
  font-size: 40px;
  color: whitesmoke;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  width: 95%;
  max-width: 2000px;
  margin: 20px auto;
  display: block;
}
@media (max-width: 768px) {
  .site-header {
    width: 100%;
    margin: 10px auto;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 10px;
  }
}
.site-header h1 {
  text-align: center;
  margin: 10px 0;
  font-size: 60px;
  letter-spacing: -1px;
  font-style: italic;
}
@media (max-width: 768px) {
  .site-header h1 {
    font-size: 36px;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #8D6E63;
  min-width: 160px;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.dropdown-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dropdown-content .nav-link {
  color: whitesmoke;
  padding: 12px 30px;
  text-decoration: none;
  display: block;
}
.dropdown-content .nav-link:hover {
  background-color: #3E2723;
  border-bottom: 3px solid whitesmoke;
  padding-bottom: 9px;
  border-radius: 20px;
}
.dropdown .show {
  display: block;
}

.drop-btn {
  cursor: pointer;
  background-color: #8D6E63;
  color: whitesmoke;
  padding: 10px 20px;
  font-size: 30px;
  border: 1px solid #3E2723;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.drop-btn:hover, .drop-btn:focus {
  background-color: #3E2723;
}

.main-section {
  background-color: rgba(247, 211, 166, 0.8117647059);
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  width: 95%;
  max-width: 2000px;
  margin: 20px auto;
  display: block;
  text-align: center;
  font-size: 28px;
  color: #3E2723;
}
@media (max-width: 768px) {
  .main-section {
    width: 100%;
    margin: 10px auto;
    border-radius: 0;
  }
}
.main-section .welcome-section {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.intro-image-wrapper {
  margin: 20px 0;
}
.intro-image-wrapper .profile-img {
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.welcome-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.welcome-buttons .btn-main {
  min-width: 200px;
  background-color: #8D6E63;
  color: whitesmoke;
  padding: 15px 30px;
  font-size: 24px;
  text-decoration: none;
  border: 1px solid #3E2723;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.welcome-buttons .btn-main:hover {
  background-color: #3E2723;
  box-shadow: 4px 8px 16px 0px rgba(0, 0, 0, 0.3);
}

.site-footer {
  background-color: grey;
  color: whitesmoke;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  width: 95%;
  max-width: 2000px;
  margin: 20px auto;
  display: block;
}
@media (max-width: 768px) {
  .site-footer {
    width: 100%;
    margin: 10px auto;
    border-radius: 0;
  }
}/*# sourceMappingURL=style.css.map */