@import url('https://fonts.cdnfonts.com/css/milford-condensed');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inconsolata:wght@200..900&display=swap');



html {
  color: #222;
  font-size: 1em;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inconsolata", monospace;
  text-transform: uppercase;
  font-weight: 400;
  background-color: #000000;
  color: #e52a2b;
  margin: 0;
  padding: 0;
}
h1 {
  font-family: "Milford", sans-serif;
  font-weight: 900;
  text-align: center;
  font-size: 9em;
  text-transform: uppercase;
  letter-spacing: -13px;
  line-height: 0.77em;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  transform: scaleY(1.3)
}
#clipboard-tooltip {
  position: relative;
  top: 10vh;
}
#address {
  color: #e52a2b;
  font-weight: 300;
  text-transform: none;
  position: relative;
  top: 5dvh;
}
#audio-controls {
  position: absolute;
  top: 1dvh;
  transform: translateX(-50%);
}
#menu {
  position: absolute;
  bottom: 11dvh;
  width: 100%;
}

/* Remove default list styling */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  text-align: center;
  width: min-content;
}

/* Make list items display inline */
ul li {
    display: inline;
}

/* Optional: Add styles for links inside list items */
ul li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 2px solid #333; /* Circle border */
  border-radius: 50%; /* Makes it a circle */
  border-color: #ffffff;
  display: flex;
  align-items: center; /* Center the icon vertically */
  justify-content: center; /* Center the icon horizontally */
  text-decoration: none; /* Remove underline */
  transition: all 0.3s ease; /* Smooth hover effects */
  font-weight: bold;
  margin: 0 0.5em;
}

ul li a:hover {
  border-color: #e52a2b; /* Match the border to the background */
  color: white; /* Change icon color */
}
ul li a img {
  width: 100%; /* Set icon size */
  height: 100%;
}

#footer {
  width: 100%;
  height: 1em;
  position: absolute;
  bottom: 1em;
}
marquee {
  background-color: #171717;
  padding: 6px 0px 50px;
  color: #cccccc;
}

.logo {
  color: #e52a2b;
  position: absolute;
  top: 23dvh;
  font-size: 40vw;
  margin: 0;
  width: 100%;
}
.post-logo {
  position: absolute;
  font-size: 1.5em;
  bottom: 19dvh;
  width: 100%;
}
.post-logo button {
  position: relative;
  top: 3vh;
}
.post-logo p {
  padding: 0 7vw;
}
button {
  all: unset; /* Resets all inherited styles */
  color: inherit; /* Keeps text color as the parent element */
  font: inherit; /* Inherits font from the parent element */
  cursor: pointer; /* Adds pointer cursor on hover (optional) */
}


.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  height: 100vh;
  height: 100dvh;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  object-fit: cover;
}

#main {
  color: #fff;
  height: 100vh;
  height: 100dvh;
  position: relative;
  z-index: 1;
  text-align: center;
}
#welcome {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 2;
  text-align: center;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  opacity: 1; /* Fully visible */
  transition: opacity 1s ease;
}
#welcome.hidden {
  opacity: 0; /* Invisible */
  pointer-events: none; /* Prevent interactions */
}
#welcome h2 {
    font-weight: 400;
    position: absolute;
    width: 100%;
    top: 2dvh;
}




/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */


/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}


@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}


@media only screen and (max-height: 800px) and (max-width: 492px) {
  .post-logo p{
    display: none;
  }
}
@media only screen and (max-height: 545px) {
  .post-logo p {
    display: none;
  }
}
@media only screen and (max-height: 716px) {
  .post-logo p {
    font-size: 0.8em;
  }
}
@media only screen and (min-width: 492px) {
  .logo {
    font-size: 20vw;
  }
  #address {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 1200px) {
  .logo {
  }
}
@media only screen and (min-width: 1400px) {
  .logo {
  }
}


.tech-slideshow {
  height: 100px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: #cccccc;
}

.mover-1 {
  height: 150px;
  width: max-content;

  position: absolute;
  overflow-x:hidden;
  top: 0;
  left: 0;

  animation: moveSlideshow 9s linear infinite;
}

.mover-1 span {
  display:inline-block;
  vertical-align:middle;
  margin:0 6px;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-1200px);
  }
}
