/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Responsive Styles */
html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased; /* Chrome, Safari */
  -moz-osx-font-smoothing: grayscale; /* Firefox */
}

body {
  margin: 3%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: 'ABC Laica Regular', sans-serif;
  font-size: 13pt;
  line-height: 16pt;
  color: white;
  background: #000;
}

/* Background Video - Normal View */
.background-video.normal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Background Video - Mobile View */
  .background-video.mobile {
    display: none;
  }
  
  @media only screen and (max-width: 600px) {
    /* Background Video - Normal View */
    .background-video.normal {
      display: none;
    }
  
    /* Background Video - Mobile View */
    .background-video.mobile {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
  }
/* Centered Text */
.centered-text {
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
  margin: 0 auto;
  padding-top: 3%;
}

/* Obfuscated Email Style */
#email-container {
  display: inline-block;
}

#email-container a {
  color: white;
  text-decoration: none;
}

/* Set default background color */
body {
  background: black;
  overflow: hidden;
}

/* Include local font files */
@font-face {
  font-family: 'ABC Laica Regular';
  src: url('fonts/ABCLaicaA-Regular-Trial.otf') format('otf'),
       url('fonts/ABCLaicaA-Regular-Trial.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Media Queries for Responsive Design */
@media only screen and (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .centered-text {
    padding: 0.5rem;
  }
}
