body {
  background-image: url('https://png.pngtree.com/background/20210717/original/pngtree-colored-watercolor-splash-border-background-picture-image_1432675.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
}


.wrapper {
  display: inline-flex;
  list-style: none;
  height: 1000px;
  width: 100%;
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.header, .h1, .h2 {
  display: inline-flex;
  list-style: none;
  height: 100px;
  width: 100%;
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  width: 300px;
  border: 3px solid rgb(0, 0, 0);
  padding: 50px;
  margin: 20px;
}

.rock-photo, .paper-photo, .sicsoors {
  height: 100px;
  width: 100px;
}


.wrapper .iconone {
  position: relative;
  background: #fce5cd;
  border-radius: 50%;
  margin: 10px;
  width: 200px;
  height: 200px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icontwo {
  position: relative;
  background: #d9ead3;
  border-radius: 50%;
  margin: 10px;
  width: 200px;
  height: 200px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .iconthree {
  position: relative;
  background: #c9daf8;
  border-radius: 50%;
  margin: 10px;
  width: 200px;
  height: 200px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .rock:hover,
.wrapper .rock:hover .tooltip,
.wrapper .rock:hover .tooltip::before {
  background: #f1e040;
  color: #fff;
}

.wrapper .paper:hover,
.wrapper .paper:hover .tooltip,
.wrapper .paper:hover .tooltip::before {
  background: #a8f58c;
  color: #fff;
}

.wrapper .sicsoors:hover,
.wrapper .sicsoors:hover .tooltip,
.wrapper .sicsoors:hover .tooltip::before {
  background: #70a5ff;
  color: #fff;
}