@font-face {
  font-family: Comdot;
  src: url("assets/Comdotbold-JRW7.ttf");
}

html,
body {
  padding: 0;
  margin: 0;
  background-color: grey;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Comdot;
}

@keyframes diagonalScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 997px 761px;
  }
}

body.main-menu {
  background-repeat: repeat;
  animation: diagonalScroll 30s linear infinite;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}

#game-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80vw; /* Adjust as needed */
}

#comrade-cam-container {
  display: none;
  position: absolute;
  left: 15vw;
  border: 4px solid #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#comrade-cam-title {
  font-size: 16pt;
  color: #fff; /* A bold color for the text */
  text-shadow: 1px 1px 2px #000; /* Adds a shadow to the text to make it more readable */
  text-align: center; /* Centers the text */
  background-color: black;
}

#comrade-cam {
  width: 256px;
  height: 256px;
}
