* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;

  background-color: cadetblue;
  color: #fff;
}

div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

h1 {
  font-weight: 600;
  text-align: center;
}

img {
  height: 400px;
  border-radius: 10px;
}

span {
  padding: 5px;
  background-color: aliceblue;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  color: #000;
}

span:hover {
  background-color: rgb(7, 252, 170);
  color: rgb(64, 42, 14);
}
