* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  font-family: "Radley", serif;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
  -webkit-transition: color 1s;
  transition: color 1s;
}

/* ============================================= */
/*                  Dark Mode                    */
/* ============================================= */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

body.dark-theme div, body.dark-theme hr, body.dark-theme .events, body.dark-theme #hamburger-icon {
  background: #0f1328;
  color: #f6e4f6;
}

body.dark-theme .main-event {
  color: #ffffc8;
  font-size: 175%;
  text-align: center;
  background-color: #297373;
}

body.dark-theme .event {
  background-color: #0f1328;
  color: #f6e4f6;
  border: 20px solid #2b3773;
}

body.dark-theme .gallery-title {
  background-color: #297373;
  color: #ffffc8;
}

body.dark-theme #hamburger-icon {
  background-color: #2b3773;
}

.toggle {
  float: left;
  margin: 11px 0 40px 75px;
  background-color: #5d105d;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.label {
  width: 50px;
  height: 26px;
  background-color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  position: relative;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.ball {
  width: 20px;
  height: 20px;
  background-color: white;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

/*  target the elemenent after the label*/
.checkbox:checked + .label .ball {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

.fa-moon {
  color: pink;
}

.fa-sun {
  color: yellow;
}

/* ============================================= */
/*                    Header                     */
/* ============================================= */
.header-parent {
  position: relative;
  top: 0;
  left: 0;
}

.header-img {
  position: relative;
  top: 0;
  left: 0;
  min-width: 100vw;
  max-width: 100vw;
  max-height: 400px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding-top: 0;
  overflow: hidden;
}

.header-logo {
  position: absolute;
  width: 300px;
  top: 50%;
  bottom: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top-bar {
  background-color: #2b3773;
  height: 10px;
  margin-top: -1px;
  border: none;
}

/* ============================================= */
/*                  Navigation                   */
/* ============================================= */
.nav ul {
  list-style: none;
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-left: 20px;
  padding: 20px 0 0 10px;
  color: #acc196;
}

a:link {
  color: #ffffc8;
  font-weight: 700;
  font-size: 1.5em;
}

a:visited {
  color: #f6e4f6;
}

#hamburger-icon {
  margin-top: 0;
  padding: 10px 0 10px 1px;
  cursor: pointer;
  background-color: #0f1328;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 10px 2px 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.mobile-menu {
  display: none;
  position: center;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
}

.open .mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-top: 20px;
}

.mobile-menu li {
  margin-bottom: 10px;
  color: #f6e4f6;
  margin-left: 1px;
  margin-top: 10px;
  font-size: 110%;
  list-style-type: none;
}

/* ============================================= */
/*                    About                      */
/* ============================================= */
.aboutus {
  background-color: #2b3773;
  padding: 10px;
  color: #f6e4f6;
  padding-top: 10px;
}

.aboutH {
  font-size: 200%;
  margin: 20px 10px 10px 10px;
  font-family: "Macondo", cursive;
}

.aboutus p {
  margin: 10px 10px 20px 10px;
  font-size: 150%;
  font-family: "Radley", serif;
}

/* ============================================= */
/*                    Events                     */
/* ============================================= */
.main-event {
  color: #0f1328;
  font-size: 175%;
  text-align: center;
  padding: 30px 0px 40px 80px;
  background-color: #ffbdc8;
}

.events {
  background-color: #2b3773;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

.event {
  background-color: #f6e4f6;
  color: #2b3773;
  border-radius: 5px;
  padding: 20px;
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
  height: 550px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
  margin: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 130%;
  border: 20px solid #0f1328;
  overflow: wrap;
  border-radius: 5%;
}

.event-img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-head {
  font-size: 175%;
  margin-top: 5px;
}

.info p {
  margin-bottom: -100px;
  margin-top: -20px;
}

/* ============================================= */
/*                    Gallery                    */
/* ============================================= */
/* Position the image container (needed to position the left and right arrows) */
.gallery-title {
  text-align: center;
  background-color: #f6e4f6;
  color: #0f1328;
  font-size: 200%;
}

#caption {
  font-size: 175%;
}

.container {
  position: relative;
  padding-bottom: 15%;
  background-color: #ffbdc8;
}

/* Hide the images by default */
.mySlides {
  display: none;
  width: 100%;
}

.mySlides img {
  width: 100%;
  margin: auto;
  display: block;
}

.column img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 110%;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #f6e4f6;
  padding: 2px 16px;
  color: #0f1328;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* ============================================= */
/*                    Footer                     */
/* ============================================= */
footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #0f1328;
}

address {
  all: initial;
  color: white;
  text-align: center;
  padding: 10px 0 10px 0;
}

address p {
  padding: 10px 0 10px 0;
  font-size: 125%;
  overflow: wrap;
}
/*# sourceMappingURL=styles.css.map */