:root {
  --max-width: 960px;
  --gutter-width: 1rem;
  --outer-margin: 0.5rem;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--outer-margin);
  padding-left: var(--outer-margin);
}

.container-fixed {
  max-width: var(--max-width);
  overflow: hidden;
}

.showScroll {
  overflow: visible;
}

.row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.col {
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-right: calc(var(--gutter-width) * 0.5);
  padding-left: calc(var(--gutter-width) * 0.5);
}

.col-50 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-100 {
  flex-basis: 100%;
  max-width: 100%;
}

body {
  background-color: #fff;
  color: #636b6f;
  font-family: "Raleway", sans-serif;
  font-weight: 100;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* Start with scrollbar hidden */
body {
  overflow: hidden;
}

body.show-scroll {
  overflow: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.full-height {
  height: 100vh;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.position-ref {
  position: relative;
}

.top-right {
  position: absolute;
  right: 10px;
  top: 18px;
}

.content {
  text-align: center;
}

.title {
  margin-top: 50px;
  font-size: 68px;
}

.links > a {
  color: #636b6f;
  padding: 0 25px 10px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-decoration: none;
}

.links > a:hover {
  text-decoration: underline;
}

.margin-md {
  margin-bottom: 30px;
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Start with content hidden */
#main-content {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#main-content.fade-in {
  opacity: 1;
}

[data-typing-text]::after {
  content: "|";
  animation: blink 1s infinite;
}

.typing-finished::after {
  content: ""; /* Stop blinking cursor */
  animation: none; /* Stop animation */
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
