*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    background: url("image-unsplash.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}
#container{
    width: 600px;
    height: 400px;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    color: rgb(60, 60, 60);
}
#container>h1{
    width: 100;
    text-align: center;
    font-size: 5rem;
    color: aliceblue;
}
#card{
    background-color: white;
    border-radius: 25px;
    height: 100%;
    margin-top: 1rem;

}
#card h1{
    text-align: center;
    font-size: 4rem;
    margin: 1rem 0;
}
#middle{
    display: flex;
    margin-top: 2rem;
    margin-left: 1rem;
}
#winningScore{
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 3rem;
    margin-left: 1rem;
    padding: 5px 0;
}
#ws{
    width: 100px;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#ws:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
#ws[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
  }
  #buttons{
      margin-left: 20px;
      margin-top: 2rem;
      display: flex;
      justify-content: space-around;
  }
  #p1b,#p2b,#reset{
      background-color: #7b38d8;
      border-radius: 10px;
      border: 4px double #cccccc;
      color: #eeeeee;
      font-size: 1rem;
      padding: 0.5rem 2.5rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
  }
  #p1b:hover,#p2b:hover{
      background-color: #f837ff;

  }
  #reset:hover{
      background-color: red;

  }
  .winner{
      color: green;
  }
  .loser{
      color:red;
  }