
  
  
  .selections {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 1200px;
    top: 400px
    
  }
  
  .selection {
    size: 4rem;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 100ms;
    
  }
  
  .selection:hover {
    transform: scale(1.2);
  }
  
  .results {
    color:#301cd5; ;
    background-color: rgb(52, 52, 47);
    font-size:4rem;
    margin-top: 1rem;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    position: absolute;
  }
  
  .result-score {
    margin-left: .1rem;
    font-size: 2.5rem;
    color:#301cd5;
  }
  
  .result-selection {
    opacity: .5;
  }
  
  .result-selection.winner {
    opacity: 1;
    font-size: 1.5rem;
  }
  h1 {justify-content: center;
    color: rgb(238, 255, 0);
    text-decoration: underline;
    text-decoration-color: darkgreen;
    font-family: 'Press Start 2P', cursive;
    

  }

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content https://www.w3schools.com/howto/howto_css_modals.asp */
.modal-content {
  background-color:rgb(15, 15, 14);
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.text-center {
  text-align: center;

}