body {
  background-color: aliceblue;
  overflow: hidden;
}
#point {
  width: 75px;
  height: 75px;
  border: 3px solid black;
  background-color: pink;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 100px;
  left: 600px;
  transition: 0.8s;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
}
#point:hover {
  background-color: rgb(234, 211, 215);
  width: 80px;
  height: 80px;
  transition: 0.8s all;
}
#start {
  font-family: sans-serif;
  border: 1px solid black;
  width: fit-content;
  background-color: pink;
  border-radius: 15px;
  font-size: 45px;
  margin-bottom: 5px;
  cursor: pointer;
  user-select: none;
}
#start:hover {
  background-color: rgb(234, 211, 215);
}
.flix {
  display: flex;
  justify-content: center;
}
