@import url('https://fonts.googleapis.com/css2?family=Open+Sans');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1d6a73;
  font-family: 'Open Sans', sans-serif;
  color: white;
}

h1 {
  margin: 20px;
}

.score {
  width: 410px;
  padding: 0 10px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin: 20px;
}

i {
  background-color: #44f28f;
  color: white;
  border-radius: 20px;
  font-size: 4rem;
  padding: 2rem;
  cursor: pointer;
}

i:hover {
  background-color: #44f28fb9;
}

.playingField {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  width: 410px;
  border-radius: 20px;
  padding: 30px;
}

.seperator {
  color: #1d6a73;
}

.winner {
  margin: 20px;
  font-size: 3rem;
  font-weight: bold;
}
