body {
  background-color: lemonchiffon;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.modal {
  background: rgb(131, 203, 225);
  width: 300px;
  height: 300px;

  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  display: none;
  position: relative;
  margin-top: 30px;
}

button {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 10px;
}

span {
  background: rgb(136, 243, 253);
  padding: 7px;
  font-weight: bolder;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
}

span:hover {
  background: rgb(240, 68, 34);
  cursor: pointer;
  color:white;
}
