#turnSection{
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;

  color: white;
  text-shadow: 0px 0px 1px black;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 1.5em;
  padding-top: 1vh;
  z-index: 1;
}

.turn-container{
  width: 300px;
  height: 100px;
  pointer-events: auto;
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Roboto Condensed';
}
.turn-button{
  width: 150px;
  height: 50px;
  font-size: 15px;
  background-color: #D7355C;
  color: white;
  
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-bottom: 10px;
}
 .turn-info{
   font-size: 20px;
   color:white;
   font-weight: bold;
   text-transform: uppercase;
   text-shadow: 0px 0px 1px black;
 }