@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#parent-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100vh;
  background: rgba(10, 140, 150, 0.4);
}

#container-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30vw;
  background: #f94f62;
  /* background: rgba(220, 60, 60, 0.6); */
  margin-top: 50px;
  border-radius: 5px;
  position: relative;
}

#container-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30vw;
  /* background: #ffd300; */
  /* background: rgba(60, 220, 60, 0.6); */
  background: #d3ff00;
  margin-top: 50px;
  border-radius: 5px;
  position: relative;
}

#container-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30vw;
  background: rgba(60, 220, 60, 0.6);
  margin-top: 50px;
  border-radius: 5px;
  position: relative;
}

#games-p {
  border-bottom: 1px solid #3d453f;
  color: chartreuse;
}

#win-p {
  border-bottom: 1px solid #3d453f;
  color: #f94f62;
}

#h-1 {
  color: #d3ff00;
  border-bottom: 1px solid chartreuse;
}

#h-2 {
  color: #f94f62;
  border-bottom: 1px solid #f94f62;
}

#h-3 {
  color: rgb(100, 100, 255);
  border-bottom: 1px solid #3d453f;
}

#mars-p {
  color: rgb(100, 100, 255);
  border-bottom: 1px solid #3d453f;
}
