body {
  text-align: center;
  background-color: black;
  background-image: url("Pop-Art-Wallpaper-HD.jpg");
  background-repeat: repeat;
  background-size: 100%;
}

h1 {
  color: #f93eda;
  text-align: center;
  font-weight: bold;
  font-size: 7em;
  font-family: 'Lobster', cursive;
  padding-top: 10px;
   -webkit-text-stroke: .5px white;
   margin: 0 0 20px 0;
}

img {
  width: 50%;
  height: 50%;
  display: inline-block;
  float: right;
}

#gameBoard {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#scores {
  display: flex;
  flex-wrap: wrap;
}

#counter {
  background-color: white;
  width: 6em;
  height: 12%;
  padding: 1em 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 100%;
  border: 3px dotted #f93eda;
}

#roundCount {
  color: #f93eda;
  font-size: 1.25em;
  font-family: 'Josefin Sans', sans-serif;
}

#count {
  color: #f93eda;
  font-size: 1.5em;
  font-family: 'Josefin Sans', sans-serif;
}

#simone {
  background-color: #ff00c3;
  margin: 0 4em;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 450px;
  height: 450px;
  border-radius: 50%;
}

.simoneButton {
  height: 50%;
  width: 50%;
}


 #p {
  background-color: #fca9e7;
  border-top-left-radius: 100%;
}

 #y {
  background-color: #fcf8a9;
  border-bottom-left-radius: 100%;
}

 #w {
  background-color: #ddd;
  border-top-right-radius: 100%;
}

 #b {
  background-color: #93edf9;
  border-bottom-right-radius: 100%;
}

#p.selected {
  background-color: #ff00c3;
  transition: background-color 300ms linear;
}

#w.selected {
  background-color: #fff;
  transition: background-color 300ms linear;
}

#y.selected {
  background-color: #ffff00;
  transition: background-color 300ms linear;
}

#b.selected {
  background-color: #00c7ff;
  transition: background-color 300ms linear;
}

button.gameControls {
  padding: 10px 25px;
  font-family: 'Josefin Sans', sans-serif;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 12px;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  background-color: white;
  color: #f93eda;
  border: 2px dotted #f93eda;
}

button.gameControls:hover {
  color: black;
  border: 2px solid black;
}

button:focus {
  outline: none;
}

@media only screen and (max-width: 699px) {

  body {
    background-repeat: repeat-y;
  }

  h1 {
    font-size: 5em;
       -webkit-text-stroke: 3px white;
  }

  #gameBoard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #simone {
  width: 300px;
  height: 300px;
  margin: 3em 0;
  }

  .simoneButton {
    height: 50%;
    width: 50%;
  }
}

@media only screen and (max-width: 1000px) and (min-width: 700px) {

  body {
    background-repeat: repeat-y;
  }

  h1 {
    font-size: 5em;
       -webkit-text-stroke: 3px white;
  }

  #gameBoard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #simone {
  width: 400px;
  height: 400px;
  margin: 3em 0;
  }

  .simoneButton {
    height: 50%;
    width: 50%;
  }
}









