* {
  margin: 0% 0% 0% 0%;
  padding: 0px;
  color: rgb(53, 53, 53);
}
body {
  min-height: 100vh;
}

.top-section {
  background-color: rgb(252, 127, 31, 0.1);
  position: relative;
  height: 338px;
}
@media (max-width: 498px) {
  .top-section {
    height: 365px;
  }
}

.header {
  font-family: "Playfair Display", serif;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 25px;
  padding-top: 0px;
  padding-bottom: 10px;
}

.paragraph-container {
  margin-bottom:70px;
}
.paragraph1 {  
  font-family: "GFS Didot", serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: -10px;
}

.footer-container {
  margin-bottom: 50px;
  margin-top: 30px;
}
.footer {  
  font-family: "GFS Didot", serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 10px;
}
.socials-container {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.iconsFb {
  height: 36px;
  cursor: pointer;
  align-items: center;
  padding-top: 5px;
  transition: 0.2s;
  margin-right: 4px;
  margin-left: 4px;
}
.iconsTiktok {
  height: 37px;
  cursor: pointer;
  align-items: center;
  padding-top: 5px;
  transition: 0.2s;
  margin-right: 4px;
  margin-left: 4px;
}

.iconsInsta {
  height: 45px;
  cursor: pointer;
  align-items: center;
  transition: 0.2s;
  margin-right: 4px;
  margin-left: 4px;
}
.iconsFb:hover,
.iconsInsta:hover,
.iconsTiktok:hover {
  transform: scale(1.07);
}

.menu-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: -50px;
  text-decoration: none;
}

.menu-item {
  font-family: "GFS Didot", serif;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  margin-right: 30px;
  margin-top: 12px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  position: relative;
  list-style: none;
  transition: 0.3s;
}

li {
  list-style: none;
}
.menu-item:hover,
.menu-mobile:hover {
  color: rgb(173, 173, 173);
}

.menu-item.focus,
.menu-mobile.focus {
  color: rgb(173, 173, 173);
}

.logo {
  height: 200px;
  transition: 0.3s;
  cursor: pointer;
}
.logo:hover {
  transform: scale(1.04)
}
.logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 0px;   
}

.title {
  font-family: "Playfair Display", serif;
  font-weight: 200;
  text-align: center;
  margin-top: 26px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 20px;
}

@media (max-width: 498px) {
  .header {
    font-size: 25px;
  }
  .paragraph1 {
    font-size: 12px;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 100;
  background-color: rgba(250, 250, 250, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%
}
.sidebar a {
  width: 100%
}
.menu-button {
  display: none;
  justify-content: right;
  align-items: right;
}
.menu-mobile {
  font-family: "GFS Didot", serif;
  font-style: italic;
  font-size: 23px;
  text-align: center;
  margin-right: 30px;
  margin-top: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  position: relative;
  list-style: none;
  transition: 0.3s;
}
.menu-icon {
  height: 30px;
  padding-top: 15px;
  padding-right: 15px;
}
.close-icon {
  height: 30px;
  padding-top: 15px;
  padding-left: 15px;
  margin-bottom: 30px;
}
@media(max-width: 550px) {
  .hideOnMobile{
    display: none;
  }
  .menu-button {
    display: flex;
  }
}
@media(max-width: 400px) {
  .sidebar{
    width: 100%;
  }
}