body {
  margin: 0;
}

body * {
  position: absolute;
}

main {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(darkslategray, steelblue 20%, lightblue, beige);
  overflow: hidden;
}

.clouds,
.clouds * {
  border-radius: 100%;
  background-image: radial-gradient(white, mistyrose);
}

.clouds {
  top: 20%;
  left: -15%;
  width: 50%;
  height: 30%;
  filter: blur(25px);
}

.clouds div:first-child {
  top: 50%;
  left: 70%;
  width: 50%;
  height: 40%;
}

.clouds div:nth-child(2) {
  top: 80%;
  left: 20%;
  width: 135%;
  height: 60%;
}

.clouds div:nth-child(3) {
  top: 130%;
  left: 0%;
  width: 120%;
  height: 60%;
}

.clouds div:nth-child(4) {
  top: 25%;
  left: 150%;
  width: 120%;
  height: 70%;
}

.clouds div:nth-child(5) {
  top: 55%;
  left: 200%;
  width: 50%;
  height: 80%;
}

.clouds div:nth-child(6) {
  top: 130%;
  left: 150%;
  width: 100%;
  height: 90%;
  transform: rotate(-15deg);
}

.window {
  bottom: 10%;
  left: 10%;
  width: 20vh;
  height: 35vh;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(seashell, lightsalmon);
  box-shadow: -8px 8px 15px white;
}

.pane {
  width: 95%;
  height: 95%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.pane div {
  position: relative;
  width: 40%;
  height: 45%;
  /* background-color: white; */
  background-image: linear-gradient(white, mediumaquamarine);
  border: 1px solid;
}

.rect {
  top: 10%;
  right: 10%;
  width: 10%;
  height: 10%;
  background-color: lemonchiffon;
  border: 1px solid;
  border-radius: 100%;
}

.pill {
  font-size: 4vh;
  position: absolute;
  top: 10%;
  right: 10%;
  color: white;
  text-shadow: -2px 2px 5px white;
  padding: 2% 4% 2% 4%;
  background-image: linear-gradient(white, bisque);
  box-shadow: inset 0 -5px 20px orange, inset 0 5px 20px white, -8px 8px 15px white;
  border: 0px;
  border-radius: 9999px;
  cursor: pointer;
}

.pill:active {
  padding: 2.2% 4% 1.8% 4%;
  text-shadow: -2px -2px 5px white;
  box-shadow: inset 0 5px 20px orange, inset 0 -5px 20px white, -8px 8px 15px white;
}
