* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Playwrite GB S", Arial;
  text-align: center;
}

.msg {
  display: inline-flex;
  height: 40px;
  color: beige;
  margin-top: 80px;
  text-align: center;
  justify-content: center;
  background-color: chocolate;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
}

.header {
  background-color: #b1afff;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Playwrite GB S", Arial;
  font-weight: 800;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  font-size: 100%;
}

body {
  background-color: #bbe9ff;
}

.icon {
  display: flex;
  height: 200px;
  width: 300px;
  flex-direction: column;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  background-color: #fffed3;
}
.container {
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  width: 40%;
  height: 70%;
  border-radius: 50%;
  border: 3px solid #ffe9d0;
  box-shadow: 4px 2px 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.under {
  font-weight: 600;
}

.row {
  display: flex;
  flex-direction: row;
  font-size: 20px;
  justify-content: center;

  align-items: center;
}

.col {
  border: 3px solid rgb(253, 253, 253);
  padding: 10px;
  font-weight: 700;
  color: #a34343;
  background-color: #e9c874;
}
.scoreboard {
  margin-top: 30px;
}

.score1,
.score2 {
  font-weight: 300;
  color: white;
}

.reset {
  margin: 50px;
  border-radius: 50%;
  background-color: green;
  padding: 16px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}

img:hover {
  opacity: 0.75;
}

button:hover {
  box-shadow: 2px 2px 5px rgba(253, 253, 253, 0.15);
}

button:active {
  opacity: 0.75;
}
