html {
  background: #cbccc6;
}
body {
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  background: linear-gradient(#f7fcfa, #cbccc6);
  font-family: "Roboto Condensed", sans-serif;
  overscroll-behavior: none;
  overflow: hidden;
}
* {
  -webkit-user-drag: none;
}
.page {
  transition: opacity 2s ease-out, clip-path 1s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
  overflow: auto;
  max-height: 100vh;
  min-height: 100vh;
}
.page[loading] {
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
main {
  margin: auto;
  min-height: 100vh;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 2rem;
}
p {
  margin: 0;
}

button {
  border: 2px solid #ff76b8;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 16px;
  background: #ff007d;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

button:hover {
  background: #e21076;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.055);
}

button:active {
  border: 2px solid #ff76b8;
  background: #ff76b8;
  transition: none;
}

.container {
  margin: auto;
  max-width: 1400px;
  padding: 0 60px;
  z-index: 1;
}

strong {
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  nida-chat {
    display: none;
  }
}

footer {
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.intro-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: fade-in-out 4s ease-out both;
  z-index: 100000;
  pointer-events: none;
  background: #eaeeeb;
}

@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
