@font-face {
  font-family: "Inconsolata";
  src: url("/fonts/Inconsolata.otf") format("opentype");
}
html {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  margin: 0px;
  font-family: "Inconsolata";
  color: #1A1A1A;
  font-size: 20px;
  min-height: 100vh;
}

input, button, textarea, select {
  pointer-events: auto;
}

#flash-notice-container {
  position: fixed;
  z-index: 2000;
  width: 100%;
}
#flash-notice-container > div {
  pointer-events: auto;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  width: 80%;
}
#flash-notice-container > div .flash-notice {
  padding: 10px;
  border-radius: 5px;
  color: white;
}
#flash-notice-container > div .flash-notice.error {
  background-color: #aa0000;
  border: 2px solid #6e0000;
}
#flash-notice-container > div .flash-notice.success {
  background-color: #008f00;
  border: 2px solid #005c00;
}

a:not(.button) {
  color: #1A1A1A;
  text-decoration: none;
  pointer-events: auto;
}

p {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  pointer-events: auto;
}

.frosted {
  background: rgba(204, 204, 204, 0.5);
  box-shadow: inset 0px 0px 123px 13px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

#nav-bar {
  left: 14px;
  right: 14px;
  top: 12px;
  z-index: 500;
  position: fixed;
  box-sizing: border-box;
  height: auto;
}
#nav-bar > #flex-container {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 5px 90px 5px 90px;
}
#nav-bar > #flex-container > div {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 25px;
}
#nav-bar > #flex-container > div > a {
  pointer-events: auto;
}
#nav-bar > #flex-container > div > a > img {
  height: 35px;
  width: auto;
}
#nav-bar > #flex-container > div:hover > a {
  text-decoration: underline;
}

.divider {
  border-top: 1px solid black;
  width: 100%;
}

.title {
  font-size: 45px;
  margin-bottom: 10px;
  pointer-events: none;
}

.credits {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.credits > div {
  width: 100%;
  max-width: 1300px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.credits > div > img {
  height: 32px;
  width: auto;
}
.credits > div > p {
  margin: 0px;
}

.image-caption {
  position: relative;
  margin-top: 70px;
  margin-bottom: 70px;
  width: 80%;
  max-width: 800px;
  max-height: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.image-caption:hover > div p {
  color: white;
}
.image-caption:hover > img {
  filter: brightness(70%);
}
.image-caption img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.1s;
}
.image-caption > div {
  pointer-events: auto;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-caption > div p {
  font-weight: bold;
  color: transparent;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
}
.image-caption p {
  width: 100%;
  text-align: center;
  margin: 0px;
  margin-top: 10px;
  font-size: 18px;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.info {
  margin: 30px auto 30px auto;
  background-color: #0099ff;
  border-radius: 10px;
  border: 2px solid #0078da;
  color: white;
  padding: 20px 10px 20px 10px;
  width: 80%;
  max-width: 1000px;
  box-shadow: 5px 5px 11px #a1a6b6, -5px -5px 11px #ffffff;
}
.info p {
  margin: 0px;
}

.button {
  pointer-events: auto;
  margin: 40px auto 40px auto;
  display: block;
  border-radius: 7px;
  padding: 4px;
  width: max-content;
  height: auto;
  color: #1A1A1A;
  background-color: #CCCCCC;
  padding: 10px 20px 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 5px 5px 11px #a1a6b6, -5px -5px 11px #ffffff;
  transition: 0.1s;
}
.button:hover {
  color: #1A1A1A;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.363);
}
.button:active {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.363);
}
.button:visited {
  color: #1A1A1A;
}

@media screen and (max-width: 1000px) {
  #nav-bar > #flex-container {
    padding: 5px 5px 5px 5px;
    justify-content: space-around;
  }
  #nav-bar > #flex-container > div {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .credits > div {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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