/*
0px - 600px: Phone
600px - 900px: Tablet Portrait
900px - 1200px: Tablet Landscape
1200px - 1800px: Normal Styles (Desktop)
1800px + : Big Desktop

    $breakpoint argument choices:
    - phone
    - tab-port
    - tab-land
    - big-desktop

    ORDER: base + typography > general layout > page layout > components
*/
html {
  font-size: 62.5%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

::selection {
  background-color: #ffe9f7;
  color: #c500ae;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #dadada;
  -webkit-border-radius: 2px;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  font-family: monospace;
}
@media only screen and (max-width: 37.5em) {
  .main-container {
    flex-direction: column;
  }
}

.nav {
  height: 100%;
  width: 20%;
  border-right: 1px solid lightgrey;
  padding-top: 1rem;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 75em) {
  .nav {
    box-sizing: border-box;
    width: 30%;
    height: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav {
    width: 100%;
    height: 18%;
    padding-top: 1rem;
    border-bottom: 1px solid #dadada;
  }
}
.nav-title {
  font-size: 4rem;
  width: 85%;
}
.nav-title .mobile-decoration {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .nav-title .mobile-decoration {
    display: inline-block;
    height: 100%;
    width: auto;
  }
  .nav-title .mobile-decoration img {
    height: 40%;
    width: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav-title a {
    width: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }
  .nav-title a {
    max-width: 222px;
    width: 50%;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-title a img {
    width: 100%;
    height: auto;
  }
}
.nav-title img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 37.5em) {
  .nav-title img {
    width: 20%;
  }
}
.nav-pages {
  font-family: monospace;
  width: 80%;
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin-left: -1rem;
}
@media only screen and (max-width: 37.5em) {
  .nav-pages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: space-between;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    width: 90%;
  }
}
.nav-pages--bullet {
  display: inline-block;
  margin-right: 0.5rem;
}
.nav-pages--bullet img {
  width: 80%;
}
@media only screen and (max-width: 37.5em) {
  .nav-pages--bullet {
    display: none;
  }
}
.nav-pages li {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.nav-pages li a {
  text-decoration: none;
  color: #2e2e2e;
}
@media only screen and (max-width: 37.5em) {
  .nav-pages li a {
    font-size: 1.8rem;
  }
}
.nav-pages li.selected:hover a {
  color: #0292df;
}
.nav-pages li.selected a {
  color: #38b9ff;
  text-decoration: underline;
}
.nav-pages li:hover a {
  color: #636363;
}
.nav-footer {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid #dadada;
}
@media only screen and (max-width: 37.5em) {
  .nav-footer {
    display: none;
  }
}
@keyframes animate_text {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.nav .news {
  border-top: 1px solid #dadada;
  width: 100%;
  height: 3rem;
  margin-top: auto;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  background-color: #fff5fd;
}
.nav .news-text {
  font-family: monospace;
  color: #2b2b2b;
  animation: animate_text 10s linear infinite;
  white-space: nowrap;
}

.content {
  height: 100%;
  width: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #f7f7f7;
  border-right: 1px solid #d1d1d1;
}
@media only screen and (max-width: 75em) {
  .content {
    box-sizing: border-box;
    width: 70%;
    height: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .content {
    box-sizing: border-box;
    width: 100%;
    height: 82%;
  }
}

.mobile-footer {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .mobile-footer {
    height: 2%;
    display: flex;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
    border-top: 1px solid #e8e8e8;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 1.5rem;
    background-color: #f7f7f7;
  }
}

.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.main-image img {
  width: 60%;
  height: auto;
}

.main-text {
  text-align: center;
  font-size: 1.3rem;
}

a {
  color: #ff1b7e;
}
a:hover {
  color: #b80093;
}

.splash {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.splash img {
  width: auto;
  height: 95%;
}
@media only screen and (max-width: 75em) {
  .splash img {
    max-width: 400px;
  }
}
@media only screen and (max-width: 37.5em) {
  .splash img {
    width: 95%;
  }
}

.about {
  text-align: center;
  padding: 5rem;
  font-size: 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #373737;
}
.about-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.about-text {
  line-height: 2.8rem;
}

.books {
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.contact {
  text-align: center;
  padding: 5rem;
  font-size: 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #373737;
}
.contact-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.contact-text {
  line-height: 2.8rem;
}

.events-container {
  overflow-y: scroll;
  width: 100%;
  padding-top: 1rem;
}

.other-events {
  width: 100%;
}
.other-events--title {
  font-size: 1.6rem;
  width: 100%;
  text-align: center;
}
.other-events--list {
  list-style: none;
  font-size: 1.2rem;
  padding-left: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .other-events--list {
    padding-left: 1rem;
  }
}
.other-events--list li {
  margin-bottom: 0.4rem;
}

.events {
  padding-top: 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-items: center;
}
.events--title {
  margin: 0 auto;
  margin-bottom: 4rem;
  width: 16rem;
  background-color: rgba(255, 255, 255, 0.263);
  text-align: center;
  box-shadow: 1px 1px 1px 0px #e3e3e3;
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #212121;
}
@media only screen and (max-width: 37.5em) {
  .events--title {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .events {
    grid-template-columns: auto;
  }
}
.events .event {
  width: 70%;
  height: 25rem;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  .events .event {
    height: auto;
    width: 80%;
    margin-bottom: 4rem;
  }
}
.events .event a img {
  height: 100%;
  width: 100%;
  border: 1px solid pink;
}
.events .event .caption {
  text-align: center;
  margin-top: 0.2rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 37.5em) {
  .events .event .caption {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
}

.back-button {
  width: 95%;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .back-button {
    font-size: 2rem;
  }
}

.feature {
  overflow-y: scroll;
  margin-left: 0rem;
  margin-top: 1rem;
  width: 100%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  .feature {
    display: flex;
    flex-direction: column;
  }
}
.feature-title {
  margin-left: -1rem;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .feature-title {
    font-size: 3rem;
  }
}
.feature-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .feature-subtitle {
    font-size: 1.8rem;
  }
}
.feature-date {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .feature-date {
    font-size: 1.8rem;
  }
}
.feature-gallery {
  display: flex;
  height: 40rem;
  overflow-x: scroll;
  align-items: start;
  padding-top: 2rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.feature-gallery .gallery-item {
  width: 30rem;
  height: 95%;
  display: flex;
  justify-content: start;
  flex-direction: column;
}
.feature-gallery .gallery-item .image-caption {
  text-align: center;
}
.feature-gallery .gallery-item:not(last-child) {
  margin-right: 2rem;
}
.feature-gallery .gallery-item a {
  width: 100%;
  height: 85%;
  max-width: 30rem;
  margin-bottom: 0.2rem;
  align-items: center;
  display: flex;
}
.feature-gallery .gallery-item .image-caption {
  font-size: 1.2rem;
  margin: auto 0;
}
.feature-gallery .gallery-item img {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 30rem;
  width: auto;
}
.feature-gallery .gallery-item img.extra-wide {
  margin: 0 auto;
  width: 30rem;
  height: auto;
}
.feature-gallery .gallery-item video {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 30rem;
  width: auto;
}
.feature-gallery .gallery-item video.extra-wide {
  margin: 0 auto;
  width: 30rem;
  height: auto;
}
.feature-text {
  font-size: 1.3rem;
}
@media only screen and (max-width: 37.5em) {
  .feature-text {
    font-size: 1.8rem;
  }
}
.feature-text--list {
  margin-top: 0.2rem;
  padding-left: 2.5rem;
}
.feature-text--list li {
  list-style: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*# sourceMappingURL=style.css.map */
