body {
  background-color: darkcyan;
  background-image: url("green-gobbler.png"), linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);;
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  width: 20rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
  border-radius: 7px;
  background-color: rgba(255, 255, 255, .15);
  backdrop-filter: blur(5px);
  padding: 10px;
}

.review {
  margin: 0;
  display: grid;
  justify-content: center;
  align-content: center;
  padding: 5px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.white-bg {
  background-color: aliceblue;
}

.round-borders {
  border-radius: 12px;
}

.close-min-max-btns {
  margin-right: 10px;
  font-size: small;
}

.text-green {
  color: #27C93F;
  color: #00FF00;
}

.text-yellow {
  color: #FFBD2E;
  color: #e6e600;
}

.text-red {
  color: #FF5F56;
  color: #db2f2f;
}