@font-face {
  font-family: 'Short Stack';
  src: url('/assets/fonts/ShortStack-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@media only screen and (max-width: 480px) {
  /* CSS rules for mobile devices */
  #RemoteVideoContainer {
    grid-column-start: 1;
    grid-column-end: 3;

  }
  
}

body {
  background-color: black;
  color: lemonchiffon;
  font-family: sans-serif;
  margin: 20px;
  font-family: "Short Stack", serif;
  font-weight: 400;
  font-style: normal;
}

/* SIDEBAR */
#peerIndicator {
  color: greenyellow;
}

#localVideo {
  background-color: black;
  width: 95%;
  border: 1px solid #c23d7c;
  margin-top: 50;
}
#sideBar {
  grid-column-start: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#theForm {
  margin-bottom: 20px;
}
#controls {
  margin-bottom: 20px;
}

#roomInput {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: "Short Stack", serif;
  font-weight: 400;
  font-style: normal;
}

button {
  color: lemonchiffon;
  background-color: #601421;
  padding: 10px;
  font-family: "Short Stack", serif;
  font-weight: 400;
  font-style: normal;
}

roomInput:disabled ,button:disabled {
  opacity: 50%;
}
#remoteVideo {
  background-color: black;
  width: 95%;
  border: 1px solid #c23d7c;
  max-height: 95vh;
}


#RemoteVideoContainer {
  grid-column-start: 2;
}

.flexContainer {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#pageContainer {
  display: grid;
  grid-template-columns: 1fr 4fr;
  height: 90vh;
}


/* BACKGROUND */


.background-container {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
}
.sliding-background {
  display: block;
  position: absolute;
  background-image: url(./assets/images/dark-pink-checker.png);
  background-size: 800px 800px;
  background-repeat: repeat;

  top: 0;
  left: -800px;
  height: 1000%;
  width: 1000%;
  z-index: -2;
  overflow: hidden;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(800px, -800px, 0);
  }
} 
