* {font-family:'Roboto', sans-serif;}

body, html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
}

@keyframes hue-rotate {
  100% { filter:hue-rotate(360deg); }
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

a {
  color: white;
}

.main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 150px;
  animation: hue-rotate 4s linear infinite;
  z-index: 9999;
}


.main iframe {
  animation: hue-rotate 4s linear infinite;
  height: calc(100% + -200px);
  width: 100%;
}

.ytlink-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
}

.ytlink-container > * {
  margin: 0 5px;
}

#ytlink-input {
  height: 2.5em;
  width: 50%;
  max-width: 300px;
  padding: 0 20px;
  border-radius: 1.25em;
  border: none;
  outline: none;
}

#ytlink-submit {
  color: white;
  padding: 0;
}

#info-panel {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + -100px);
  padding-top: 100px;
  z-index: 999;
  color: white;
  overflow-y: scroll;
}

#info-panel p {
  text-align: center;
  padding: 20px;
}

#info-icon {
  color: #ffffff;
  position: fixed;
  right: 30px;
  top: 50px;
  z-index: 9999;
  transform: translate(50%,-50%);
}

#info-icon svg {
  height: 2em;
}

#main-info-loackme {
  width: 20vw;
  max-width: 200px;
  max-height: 25vh;
}

.footnote{
  font-size: 0.8em;
}
