@font-face {
  font-family: 'Roboto';
  src: url('./RobotoCondensed-Medium.woff2') format('woff2'),
       url('./RobotoCondensed-Medium.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --dark-color: #222;
  --light-color: #f8f8f8;
  --main-color: #222;
}



html {
  color: var(--dark-color);
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  text-transform: uppercase;
  font-weight: 400;
  background-color: var(--dark-color);
  color: var(--main-color);
  margin: 0;
  padding: 0;
}

button {
  all:unset;
  color:inherit;
  font: inherit;
  cursor: pointer;
}

#clipboard-tooltip {
  position: relative;
  top: 10vh;
  background-color: rgba(0, 0, 0, 0.45);
  font-size: 10vh;
  padding: 6px;
  border-radius: 6px;
}

#audio-controls {
  position: absolute;
  top: 1dvh;
  right: 1dvw;

  height: auto;
  background-color: var(--dark-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  border: none;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

#audio-controls svg {
  width: clamp(20px, 2vw, 60px);
  height: auto;
  fill: #fff;
}

#audio-controls:hover {
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

#menu {
  position: absolute;
  bottom: 20vh;
  bottom: 20dvh;
  width: 80%;
  max-width: 400px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  height: auto;
}

ul li {
  display: inline;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
  margin: 0 0.5em;
  flex-shrink: 0;
}

ul li:hover {
  border: 0.4em solid var(--main-color);
  border-radius: 50%;
}

.social {
  display: block;
  flex-shrink: 0;
  flex: 1;
}

#buy {
  padding:0;
  flex: 2;
  height: auto;
  display: block;
}

#buy:hover {
  border: 0.4em solid var(--main-color);
  border-radius: 1.5em;
}

ul li a img {
  width: 100%;
  height: 100%;
}

#address {
  position: absolute;
  bottom: 10vh;
  bottom: 10dvh;
  width: fit-content;
  height: auto;
  background-image: url('../img/contract_address.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  border: 2px solid var(--light-color);
  border-radius: 0.4em;
  font-size: clamp(1.2rem, 1vw, 3rem);
  padding: 0 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  display: inline-block;
  text-align: center;
  text-transform: none;
}


#footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}

marquee {
  background-color: var(--dark-color);
  padding: 0.8em 1em 3em;
  color: var(--light-color);
}

.post-logo {
  position: absolute;
  font-size: clamp(0.3rem, 0.8em, 1.5rem);
  width:clamp(200px, 80vw, 600px);
  bottom: 25vh;
  bottom: 25dvh;
  background-color: rgba(0, 0, 0, 0.45);
  border: 2px solid var(--main-color);
  border-radius: 0.75em;
  padding: 0.2em 0.2em;
  margin: 0.5em;
  text-align: center;
}


.post-logo button {
  position: relative;
  top: 5vh;
}

.post-logo p {
  padding: 0 7vw;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh; /* fallback */
  height: 100dvh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100vh; /* fallback */
  height: 100dvh;
  transform: translateX(-50%);
  z-index: -1;
  object-fit: cover;
  object-position: center center;
}

@media (max-aspect-ratio: 1/1), (orientation:portrait) {
  .video-background video {
    object-position: 38% center;
  }
}

#main {
    color: var(--light-color);
    height: 100vh;
    height: 100dvh;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#welcome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  letter-spacing: 0.1em;
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  z-index: 999;
}
#welcome.hidden {
  opacity: 0;
  pointer-events: none;
}
#welcome h2 {
    font-weight: 400;
    font-size: clamp(1.5rem, 4vw, 3rem);
    position: absolute;
    text-align: center;
    width: 100%;
    top: 2vh;
    top: 2dvh;
}
#welcome .logo {
  position: fixed;
  top: 20vh;
  left: 50%;
  color: var(--main-color);
  width: 80%;
  overflow: hidden;
  transform: translateX(-50%);
  height: auto;
  max-width: 800px;
  object-fit: contain;
}

#enter-button{
  position: fixed;
  bottom: 20vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90vw;
  width: 60%;
  height: 10vh;
  text-align: center;
  background-image: url('../img/enter.svg');
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
}

#main .logo {
  top:20vh;
  position: absolute;
  width: 80%;
  max-width: 800px;
}

hr {
  display: block;
  height: 1px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 2vh 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}


::-moz-selection {
  background: var(--main-color);
  text-shadow: none;
}

::selection {
  background: var(--main-color);
  text-shadow: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tech-slideshow {
  min-height: 10vh;
  min-height: 10dvh;
  width: 100%;
  margin: 0 auto;
  position: relative;
  bottom: 0;
  overflow: hidden;
  color: var(--light-color);
}

.mover-1 {
  width: max-content;
  position: absolute;
  overflow-x: hidden;
  bottom: 0;
  left: 0;
  animation: moveSlideshow 40s linear infinite;
}

.mover-1 span {
  font-size: clamp(1rem, 1vw, 3rem);
  display:inline-block;
  vertical-align:middle;
  background-image: url('../img/bottom_shit.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@keyframes moveSlideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
