body {
  margin: 0;
  display: grid;
  place-items: center;
}
.title {
  color: rgb(65, 166, 206);
  font-variant: small-caps;
  margin: 0;
}
.gray {
  color: gray;
}
.text {
  font-size: 14px;
}
#green {
  color: green;
}
.pink {
  color: pink;
}
.red {
  color: red;
}
#box {
  width: 300px;
  height: 300px;
  background-color: rgb(22, 187, 118);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1.5s;
}
#box:hover {
  background-color: rgb(138, 28, 182);
  color: white;
}
.container {
  width: 80%;
  height: 100vh;
  background-color: rgb(200, 216, 230);
  display: grid;
  place-items: center;
}
.left {
  position: absolute;
  left: 10%;
  top: 0;
}
