* {
  margin: 0px;
  padding: 0px;
}

body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100vh;
  background-color: rgb(122, 164, 243);
}

.fish {
  width: 50vw;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fish span {
  position: absolute;
}

.fish span:nth-child(1) {
  width: 35vw;
  height: 35vh;
  margin-left: 0vw;
  border-radius: 50%;
  background-color: rgb(255, 0, 0);
}

.fish span:nth-child(2) {
  width: 20vw;
  height: 40vh;
  margin-left: 28vw;
  background-color: rgb(255, 0, 0);
  clip-path: polygon(100% 0%, 50% 50%, 100% 100%);
}

.fish span:nth-child(3) {
  width: 2vw;
  height: 4vh;
  margin-left: -22vw;
  margin-top: -7vh;
  border-radius: 50%;
  background-color: black;
}

.fish span:nth-child(4) {
  width: 2vw;
  margin-left: -30vw;
  margin-top: 10vh;
  border: 4px solid black;
}