body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background: url('/dworzec/images/tvroom.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
  padding-top: 10vh;
}

.container {
  display: flex;
  gap: 80px;
  padding-left: 160px;
  position: relative;
  top: 5vh;
}

.nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  top: 11vh;
}


.nav img {
  width: 60%;
  cursor: pointer;
  margin-bottom: .5vh;
}


.screen {
  position: absolute;
  top: 10vh;
  left: 44.5vw;
  width: 38vw;
  height: 28vw;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 60px;
  overflow: hidden;
}

.screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 60px;
}


#gif-placeholder {
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
}

#original-image,
#hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: auto;
  transition: opacity 0.09s ease;
}

#hover-image {
  opacity: 0;
}

a:hover #original-image {
  opacity: 0;
}

a:hover #hover-image {
  opacity: 1;
}

footer {
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  color: #989897;
  z-index: 10;
}
  footer a {
      color: #989897;
  }


/*MOBILE STARTS HERE*/
@media screen and (max-width: 768px) and (orientation: portrait) {
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

  body {
    background: url('/dworzec/images/tvroommobile.jpg') no-repeat top center;
    background-size: 100% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .screen {
    width: 60vw;
    height: 35vw;
    position: relative;
    top: 9vh;
    left: -30vh;
    transform: none;
    border-radius: 30px;
    overflow: hidden;
  }

  .screen iframe {
    border-radius: 30px;
  }

footer {
  font-size: 8px;
  color: #989897;
  position: fixed;
  bottom: 0;
  right: 10px;
  line-height: 1;
  padding: 0;
  margin: 0;
  z-index: 10;
}
.nav {
  position: center;
  left: 0vw;
  top: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vh; /* This spaces out the nav items vertically */
}

.nav img {
  width: 55vw;
  max-width: 300px;
  cursor: pointer;
}




/*landscape mobile*/
@media screen and (max-width: 768px) and (orientation: landscape) {
  footer {
    font-size: 6px;
    bottom: 1px;
    right: 60px;
  }
}