@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  font-family: "Playfair Display", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFF9EA;
}

section {
  padding: 28px 8%;
}

.btnDefault {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFCB45;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0,1);
  cursor: pointer;
  transition: background-color .3s ease;
}

.btnDefault:hover{
  background-color: #F8D477;
}

.socialMediaButtons {
  display: flex;
  gap: 18px;
}

.socialMediaButtons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  background-color: #FFFFFF;
  font-size: 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: #1d1d1d;
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3 ease;
}

.socialMediaButtons a:hover {
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.sectionTitle {
  color: #E9A209;
  font-size: 1.563rem;
}

.sectionSubtitle {
  font-size: 2.1875rem;
}
