.background{
    background-color: purple;
    padding: 50px;
    margin: 10px 0;
    border-radius: ;
}

.about-section h1, .hobbies-list h2{
    font-weight: ;
}

.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px auto;
}

.about-section{
    width: 100%;
    padding: px 50px;
}

.hobbies-list{
    width: 32%;
}

.hobbies-list-books{
    width: 66%;
}

@media only screen and (max-width: 600px) {
    .hobbies-list, .hobbies-list-books{
        width: 100%;
    }

    .background{
        margin: 10px 0;
    }

    .about-section h1, .hobbies-list h2{
        font-size: 26px;
    }
}


ul li{
 font-size: 18px;
}









body {
  margin: 0;

  height: 100vh;
  background-color: black;
  overflow: scroll;
}

span {
  background: url("");
  width: 100px;
  height: 100px;
  position: absolute;
  pointer-events: none;
  background-size: cover;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: animate 6s linear;
}

@keyframes animate {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
    filter: hue-rotate(0);
  }
  100% {
    transform: translate(-50%, -5000%);
    opacity: 0;
    filter: hue-rotate(720deg);
  }