* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html body {
  font-family: Inter, HelveticaNeue, Helvetica, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  color: #ffffff;
  background-color: #000;
}
h1 {
  margin: 0px;
  padding: 0px;
}
p {
  padding: 0px;
  margin: 0px;
}
.background-video video {
    position: fixed;
    right: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -10;
    background: no-repeat;
    background-size: cover;
    object-position: top center;
    object-fit: cover;
}
.bodytext {
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  padding-top: 10px;
  max-width: 440px;
  text-align: left;
}
.logo {
  width: 90vw;
  max-width: 1746px;
  opacity: 0.9;
}
.centered-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  min-height: 96vh; /* fallback for Js load */
  min-height: var(--doc-height);
}
.centered-content p {
  margin: 0 0 10px;
}
@keyframes pulsate {
  0% { 
    transform: scale(1); 
    opacity: 0.7; 
  }
  50% { 
    transform: scale(1.05); 
    opacity: 0.9; 
  }
  100% { 
    transform: scale(1); 
    opacity: 0.7; 
  }
}

.social-links {
  padding-top:25px;
  font-size: 10px;
  font-weight: 500;
}
a {
  color: #ffffff;
  padding-right: 5px;
  padding-left: 5px;
  text-decoration: none;
}
a:hover {
  color: #fafafa;
  text-decoration: underline;
}
