form input,
form textarea,
form button {
    display: block;

}

input,
button,
textarea,
select {
  font-size: 18px; 
}

.commentForm{
    width: 60%;
    margin: 0;
    text-align: center;
}
#commentForm input {
    display: block;
    width: 25%;
    margin: 2% auto;
    text-align: center;

}
#commentForm button {
    display: block;
    width: 88%;
    height: 60px;
    border: 2px solid #555;
    background-color: #e3e3e3;
    margin: 2% auto;
    text-align: center;
}
#commentForm textarea {
    display: block;
    width: 88%;
    height: 100px;
    margin: 2% auto;
    text-align: center;  
}

#leftBtn{
    width: 44%;
    
    height: 80px;
}



#rightBtn{
    width: 44%;
    
    
    height: 80px;
}

#spinBtn{
    margin-top: 1.5%;
    
    width: 64%;
    height: 80px;
}

.controlBtn {
  position: relative;
  color: #555;
  background-color: #e3e3e3;
  border: none; 
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 0;
  cursor: pointer;
}

.controlBtn::before,
.controlBtn::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #555;
}

.controlBtn::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.controlBtn::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.controlBtn span::before,
.controlBtn span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #555;
}

.controlBtn span::before {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.controlBtn span::after {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

#scoreContainer{
    background-color: #e3e3e3;
}

.container-fluid{padding-left: 40%}

.navbar .navbar-brand,
.navbar .nav-link {
  color: #333; 
}

#playerName{
  display: none;
}

.overlay{position: absolute;
        top: 0;
        left: 0;
        width: 200px;
        height: 400px;
        display: none; 
        margin-left: 26%;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 32px;
        font-weight: bold;
        pointer-events: none;
        background: rgba(0,0,0,0.3);}