@font-face {
  font-family: "Canterbury";
  src: url("Fonts/Canterbury.woff") format("woff");
}
@keyframes zoomin {
  0% {
    filter: brightness(0%);
    opacity: 1;
    transform: scale(1);
  }
  80% {
    filter: brightness(100%);
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(9);
  }
}
@keyframes dissolve {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
h1 {
  text-align: center;
  color: white;
  font-family: "Canterbury";
  font-size: 60px;
}
h2 {
  text-align: center;
  color: white;
  font-family: "Canterbury";
  font-size: 60px;
}
h3 {
  text-align: center;
  color: white;
  font-size: 20px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subsection {
  text-align: center;
  max-width: 1500px;
  width: 100%;
  display: inline-block;
  align-content: center;
  justify-content: center;
  padding: 5px;
}
p {
  text-align: center;
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 25px;
}

.floatingbackgroundcolor {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(0deg, #134026 0%, #000000 100%);
}
.photo_large {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 600px;
  max-width: 90%;
}
.logo video {
  width: 700px;
  max-width: 90%;
}
.photo_large img {
  width: 1200px;
  max-width: 90%;
  filter: grayscale(1);
  transition: 5s;
}

.subsection img {
  width: 800px;
  max-width: 100%;
}
.navbar {
  background: black;
  font-size: 30px;
}

.showstable {
  text-align: center;
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 20px;
  margin: 0 auto;
  max-width: 100%;
  table-layout: fixed;
}
.showstable img {
  cursor: pointer;
  height: 50px;
  width: 70px;
}
.showstable td {
  padding: 12px;
}
#curtain {
  z-index: 99;
  transition: 8s;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dissolve 3s forwards;
}
#curtain img {
  max-height: 100vh;
  max-width: 100vw;
  animation: zoomin 3s forwards;
  animation-timing-function: linear;
}
