.win-screen{
    position:fixed;
    margin: auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

}

.win-screen-contents{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: space-between;
    font-size: 18px;
    color: white;
    background-color: silver;
    margin: 30vh auto;
    padding: 10%;
    border: 5px solid black;
    border-radius: 10%;
    width: 50%;
}

button{
    background-color: white;
    padding: .75em;
    border: solid black 2px;
    border-radius: 50%;
    font-size: 18px;
}

.hidden {
  display: none;
}

body {
  justify-content: center;
  background-color: olivedrab;
}

.reshuffle {
  display: inline-block;
  text-align: center;
  align-items: center;
  margin: auto;
}

.body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}

.deck {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  row-gap: 1em;
  column-gap: 1em;
  margin: 2em auto;
  padding: 0.5em;
  width: 80vw;
  border: solid black 5px;
  border-radius: 2%;
  background-color: silver;
}

.playingCard img {
  justify-content: center;
  align-items: center;
  display: block;
  height: 100%;
  width: 100%;
}
.title {
  text-align: center;
  display: inline-block;
  margin: 0;
}
#header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

  width: 100vw;
}
h2 {
  display: flex;
  justify-content: center;
  padding: 5px;
}
.score {
  display: inline-block;
  border: black;
  align-self: center;
  border-style: dotted;
  border-radius: 10%;
  width: 142.03px;
  margin-top: 0.5em;
}
#attempts {
  order: -1;
}
