/* Reset some basic elements */
html {
  font-size: 14px;
}

body, p, ul {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 2rem;
}

@font-face {
  font-family: 'romanticcouple';
  src: url("/static/fonts/romantic-couple-bold.7b9b94127be2.woff2") format('woff2'),
       url("/static/fonts/romantic-couple-bold.9df5e6f4d2e9.woff") format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'moon_flowerregular';
  src: url("/static/fonts/moon_flower-webfont.4b037c653186.woff2") format('woff2'),
       url("/static/fonts/moon_flower-webfont.6277186937b3.woff") format('woff');
  font-weight: normal;
  font-style: normal;

}

/* Apply a font-family throughout the website, assuming you have one in mind */
body {
  font-family: 'moon_flowerregular', serif;
  /*background-image: url("/static/img/background.d4896db9906c.jpg");*/
  background-repeat: repeat;
  background-size: auto;
  background-color: #411A1A;
}

/*header {
  max-height: 20%;
}*/

header {
  font-family: 'moon_flowerregular', serif;
}

header div a img {
  justify-content: flex-start;
  max-width: 100%;
  min-height: 15vh;
  height: 100%;
  padding-left: 1.5em;
  padding-top: 1vh;
}

nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 7vh 2em;
}

/* Media query for smaller screen sizes */
@media (max-width: 768px) {
  nav .menu {
    padding: 2vh 0.5em;
    justify-content: center;
  }
  nav ul li {
    padding: 0 0.5em; /* Adjust the padding value as needed */
    margin: 0.15em 0.5em !important;
  }

  nav .menu ul {
    flex-direction: column;
    padding-left: 1em;
    margin-bottom: 10px;
  }
}

nav .menu ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

nav ul li {
  margin: 0 0.5em;
  margin-right: 0em;
  font-size: 4vh;
}

nav {
  display: flex;
  justify-content: space-between;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  padding: 0 0.2em;
  border-radius: 5px;
  padding: 4px 10px;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li.active  a{
  background-color: #fff; /* Background color on hover */
  color: #000; /* Text color on hover */

}

nav li.highlight a {
  border: 2px solid #fff; /* Border color */
}
nav li.highlight a:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

main {
  gap: 10px;
  margin-top: 10px;
  text-align: center;
  padding: 1em 0em;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: calc(30px + 2em);
  overflow: auto;
}

h1, h2, h3, h4, h5 {
  font-family: 'romanticcouple', serif;
}

h2 {
  font-size: 3rem;
  color: #fff; /* The color of your choice */
  justify-content: center;
  align-content: center;
}

h3 {
  color: #fff; /* The color of your choice */
  font-size: 2rem;
  justify-content: center;
  align-content: center;
}

h4 {
  color: #fff; /* The color of your choice */
  font-size: 3rem;
  justify-content: center;
  align-content: center;
  font-family: 'moon_flowerregular', serif;
  margin-block-end: 0.5em;
  margin-block-start: 0.5em;
}

main section p {
  font-size: 2rem;
  color: #fff; /* The color of your choice */
  justify-content: center;
}


a.button {
  font-family: moon_flowerregular, serif;
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  color: #fff; /* Text color */
  background-color: transparent; /* Clear background */
  border: 4px solid #fff; /* Border color */
  border-radius: 5px;
  text-decoration: none;
  transition: all 1s ease;
  font-size: 2rem;

}
a.button:hover {
  background-color: #fff; /* Background color on hover */
  color: #000; /* Text color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 1s ease;

}

footer {
  text-align: center;
  padding: 5px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  height:30px;
  width: 100%;
  overflow: hidden;
  color: #000; /* Change as per your design */
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'moon_flowerregular', serif;
  font-size: 1.2rem;
}

footer div.center {
  flex-grow: 1;
  text-align: center;
}

footer div.right.logged-in {
  /* This div will automatically align to the right */
  padding-right: 120px;
}

footer div.right {
  /* This div will automatically align to the right */
  padding-right: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

footer div.right a {
  text-decoration: underline;
  padding-right: 1em;
}

footer .footer-logo {
  max-width: 100%;
  max-height: 100%;
  height: 27px;
  width: 30px;
}