body {
  font-family: "Arial", sans-serif;
  margin: 0;
  background-color: #feecb6;
  display: flex;
  /* flex-direction: column; */
  color: #333;
  gap: 24px;
  height: 100vh;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

.archive {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
}

h2 {
  /* font-weight: 500; */
  margin: 48px 0 0 0;
}



p,
a,
li,
summary, ul {
  font-size: 1.5rem;
  margin: 0;
}

a {
  color: #333;
  /* text-decoration: none; */
}

section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* width: 50%; */
  padding: 48px;
  flex: 1;
  overflow-y: auto;
}

.imgs {
  /* width: 50%; */
  flex: 1;

  position: relative;
  height: 100%; /* Adjust height as needed */
  padding: 48px;
}

.imgs img {
  position: absolute;
  width: 60%; /* Adjust size as needed */
  height: auto;
  /* border-radius: 8px;  */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Position each image scattered and stacked */
.imgs img:nth-child(1) {
  top: 10%;
  left: 20%;
  z-index: 3;
}

.imgs img:nth-child(2) {
  top: 20%;
  right: 70%;
  z-index: 1;
}

.imgs img:nth-child(3) {
  bottom: 10%;
  right: 15%;
  z-index: 2;
}

.imgs img:nth-child(4) {
  bottom: 20%;
  right: 40%;
  z-index: 2;
}

.imgs img:nth-child(5) {
  top: 5%;
  left: 10%;
  z-index: 2;
}

.imgs img:nth-child(6) {
  bottom: 40%;
  right: 10%;
  z-index: 2;
  
}

.imgs img:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease;
  transform: rotate(10deg);
  z-index: 100;
  /* width:75%; */
}

details p{
    margin: 8px 0 0 16px;

}

@media (max-width: 1024px) {
  body {
    flex-direction: column;
  }
}
