* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: url("../assets/img/2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* background-blend-mode: darken; */
  height: 100vh;
  width: 100vw;
  position: absolute;
  overflow: hidden;
  animation: bg-color 5s infinite;
}
.bird {
  position: relative;
  width: 20%;
  left: 100%;
  animation: fly 5s infinite;
}
@keyframes bg-color {
  0% {
    background-color: #6666ff;
  }
  25% {
    background-color: #3398db;
  }
  50% {
    background-color: skyblue;
  }
  100% {
    background-color: #6666ff;
  }
}
@keyframes fly {
  0% {
    right: -20%;
    top: 5px;
  }
  25% {
    top: 150px;
  }
  50% {
    top: 30px;
  }
  75% {
    top: 25px;
  }
  100% {
    left: -300px;
    top: 105px;
  }
}
