* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgb(30, 152, 233),
    rgb(115, 189, 237),
    rgb(246, 246, 211),
    rgb(182, 218, 242),
    white
  );
}
body {
  height: 100vh;
  background: url("Images/farmers-market-7859278_1280.png");
  background-position: center/cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.container {
  position: relative;
  margin-top: 2.5%;
}
#chick1 {
  position: absolute;
  top: 21.4%;
  left: 52%;
  width: 190px;
  height: 270px;
  transform: rotateZ(0deg) scale(25);
  z-index: 5;
  animation: hangChickUp 2s 0s linear forwards;
}
@keyframes hangChickUp {
  from {
    top: 21.4%;
    left: 52%;
    width: 190px;
    height: 270px;
    transform: rotateZ(0deg) scale(25);
    z-index: 5;
  }
  to {
    top: 21.4%;
    left: 52%;
    width: 190px;
    height: 270px;
    transform: rotateZ(180deg) scale(1);
    z-index: 1;
  }
}
#chick2 {
  position: absolute;
  top: 22%;
  left: 53.9%;
  width: 190px;
  height: 270px;
  transform: rotateZ(170deg);
}
#eggs1 {
  position: absolute;
  top: 45%;
  left: 25%;
  width: 100px;
  height: 70px;
}
#eggs2 {
  position: absolute;
  top: 49%;
  left: 23%;
  width: 100px;
  height: 70px;
  z-index: 2;
  transform: rotate(15deg);
}
#eggs3 {
  position: absolute;
  top: 53%;
  left: 25%;
  width: 100px;
  height: 70px;
}
#almonds {
  position: absolute;
  top: 48.6%;
  left: 44%;
  width: 110px;
  height: 108px;
  transform: rotate(-4deg) skew(5deg, 5deg);
}
#lentils {
  position: absolute;
  top: 48.6%;
  left: 50%;
  width: 110px;
  height: 108px;
  transform: rotate(-4deg) skew(2deg, 2deg);
}
#cheese1 {
  position: absolute;
  top: 45%;
  left: 16%;
  width: 100px;
  height: 70px;
}
#cheese2 {
  position: absolute;
  top: 48%;
  left: 11.5%;
  width: 100px;
  height: 70px;
}
#fish1 {
  position: absolute;
  top: 73%;
  left: 17%;
  width: 100px;
  height: 70px;
}
#fish2 {
  position: absolute;
  top: 74%;
  left: 17%;
  width: 100px;
  height: 70px;
}

#fish3 {
  position: absolute;
  top: 75%;
  left: 17%;
  width: 100px;
  height: 70px;
  transform: rotate(35deg);
}

#pumpkin {
  position: absolute;
  top: 76.5%;
  left: 23%;
  width: 170px;
  height: 150px;
  transform: rotate(5deg);
}
#milk1 {
  position: absolute;
  top: 68%;
  left: 58.5%;
  width: 280px;
  height: 270px;
  z-index: 3;
}
#milk2 {
  position: absolute;
  top: 66%;
  left: 55.5%;
  width: 280px;
  height: 270px;
  z-index: 2;
}
#cow {
  position: absolute;
  top: 50%;
  left: 65.5%;
  width: 480px;
  height: 470px;
}
#joghurt {
  position: absolute;
  top: 68%;
  left: 35.5%;
  width: 100px;
  height: 100px;
}

#infoText {
  position: absolute;
  top: 10%;
  left: 70%;
  margin-right: 5%;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: rgb(0, 123, 255);
}
a:hover {
  color: orange;
}
