html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #DCD0FF !important;
}



html, body {
  margin: 0;
  height: 100%;
  background-color: orange;
}
/* Remove any competing backgrounds */
.background,
.container,
.about-section,
.hobbies-list,
.hobbies-list-books {
  background-color: orange;
}



/* Body & general */
body {
  margin: 0;
  min-height: 100vh;
  background-color:  orange;
  overflow-y: auto;
  font-family: Arial, sans-serif;
  
}



/* Background section */
.background {
  background-color: ;
  padding: 50px 20px;
  margin: 10px 0;
  border-radius: 10px;
}




.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  width: 100%;        /* 👈 ADD THIS */
  max-width: none;    /* 👈 REMOVE 1200px limit */
  margin: 0;          /* 👈 REMOVE side gaps */

  padding: 0 20px;
  box-sizing: border-box;
}




/* Headings */
.about-section h1, 
.hobbies-list h2 {
  font-weight: bold;
  margin: 0 0 15px 0;
}

/* Container for sections */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px auto;
  max-width: 1200px;
 
  padding: 0 20px;
  box-sizing: border-box;
}

/* About section */
.about-section {
  width: 100%;
  padding: 20px 50px;
  box-sizing: border-box;
}

/* Hobbies sections */
.hobbies-list {
  width: 32%;
  padding: 10px;
  box-sizing: border-box;
}

.hobbies-list-books {
  width: 66%;
  padding: 10px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media only screen and (max-width: 900px) {
  .hobbies-list, .hobbies-list-books {
    width: 100%;
  }

  .background {
    padding: 30px 15px;
  }

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

/* List styling */
ul li {
  font-size: 18px;
  margin-bottom: 5px;
}

/* Floating span animation */
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 infinite;
}

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