@font-face {
  font-family: "Bakbak One", cursive;
  font-family: "Candal", sans-serif;
  font-family: "Dangrek", cursive;
  font-family: "Roboto", sans-serif;
  font-family: "Rubik", sans-serif;
  src: url("fonts/Bakbak_One/BakbakOne-Regular.ttf"), url("fonts/Candal/Candal-Regular.ttf"), url("fonts/Dangrek/Dangrek-Regular.ttf"), url("fonts/Roboto-Bold.ttf"), url("fonts/Rubik/Rubik-VariableFont_wght.ttf");
}
body {
  background-color: linen;
  font-family: "Glook", serif;
  font-size: 1.5rem;
}

.splash {
  position: fixed;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#video-splash {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main {
  min-height: 100vh;
  position: relative;
  padding-bottom: 11rem;
  background-color: white;
  z-index: 100;
}
.main h2 {
  color: dodgerblue;
  padding-top: 0.5rem;
}

.fadeout {
  animation: fadeOut 1;
}

h1 {
  font-family: "Candal", cursive;
  margin: 1rem;
  text-shadow: 2px 2px 4px gray;
}

.videobox, .videobox-inner {
  width: 100vw;
}

.linkbar {
  margin-top: 2rem;
  margin-bottom: 4rem;
  max-width: 768px;
}

.main a, .linkbar a {
  color: dodgerblue;
  text-decoration: none;
}

.dodgerblue-svg img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(36%) saturate(7172%) hue-rotate(194deg) brightness(104%) contrast(101%);
}

.animoBorderLeftRight {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.animoBorderLeftRight::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 6px;
  bottom: 0;
  left: 0;
  background-color: royalblue;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.animoBorderLeftRight:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.description .description-title {
  background-color: #efefef;
  border-radius: 1em;
}
.description .description-title h2 {
  font-size: 3.5rem;
  margin-bottom: 0;
}
.description .description-title h3 {
  font-size: 2.5rem;
  margin-bottom: 0;
}
.description li {
  list-style-type: none;
  margin-bottom: 0.5rem;
}
.description h4 {
  font-size: 2rem;
}
.description h4 img {
  width: 25px;
  margin-right: 0.25rem;
}

header {
  padding: 0 !important;
}
header div {
  background-color: #fff;
}
header a {
  text-decoration: none;
}
header .header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header .logo {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1.5rem;
}
@media (max-width: 576px) {
  header .logo {
    font-size: 1.25rem;
  }
}
header .logo img {
  width: 32px;
  margin: auto;
  display: block;
}
@media (max-width: 576px) {
  header .menu img {
    margin-bottom: -10px;
  }
}
header .menu div {
  padding: 0 0.5rem;
}
header .menu a img {
  max-width: 160px;
}

.bio-image {
  max-width: 180px;
  object-fit: contain;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d3d3d3;
  color: black;
  height: 11rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 576px) {
  footer {
    left: 0;
    height: 13rem;
  }
}
footer p {
  margin-bottom: 0;
  line-height: 1rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */