body {
  background-color: rgb(0, 0, 0);
  text-align: center;
}
canvas {
  border: 0.2vw solid gray;
  background-image: url(background.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#p1-container, #p2-container {
  position: relative;
  color: white;
  font-size: 1.5rem;
  border: 0.2vw solid white;
  padding: 1vw;
  margin: 0.5vw;
  display: inline-block;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: left; /* Ensures text is aligned straight */
}

#p1-container {
  float: left;
}

#p2-container {
  float: right;
}

#start-screen {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
}


#start-btn {
  height: 250px;
  cursor: pointer;
  margin-top: 20px;
 
}
#start-btn:hover{
  width: 400px;
  height: 300px;
}
