:root {
    --primary-color: #1A4B84;
    --chathams_blue: #1A4B84;
    --tamarillo: #991E14;
    --yellow_sea: #FEAD06;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Roboto",sans-serif;
    line-height: 1.6;
    color: #333;
}
 .form-group{
    display: flex;
    justify-content: center;
 }
 .form-item{
    margin: 20px;
 }
.btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.start-btn,
.restart-btn{
    border: 2px solid black;
    background-color: #ffc107;
    padding:6px;
    font-weight: 600;
}
.container{
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0.2rem;
    text-align: center;
    height: 80vh;
}
.header{
    text-align: center;
    margin: 1rem 0;
}
.header h2{
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: monospace;
    color: black;
}
.scoreBoardL {
    border: 2px solid #000;
    border-radius: 5px;
  }
  
  .modal-content img {
    margin: 0 auto;
  }
  
  .game-img {
    width: 150px;
  
    margin-bottom: 20px;
  }
  
  .text-win {
    color: var(--win-color);
  }
  
  .text-lose {
    color: var(--lose-color);
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background: #fff;
    text-align: center;
    margin: 10% auto;
    width: 350px;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: var(--modal-duration);
  }
  
  .modal-content h1 {
    margin-bottom: 1rem;
  }
  
  .modal-content p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  @keyframes modalopen {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @media (max-width: 700px) {
    .choice {
      font-size: 110px;
    }
  }
  
  @media (max-width: 500px) {
    .choice {
      font-size: 80px;
    }
  }
  
  header .navbar-brand {
    height: 150px;
  }