main img {
  border-radius: 50%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
  border: 2px solid #ffd700;
  height: 250px;
}

.intro {
  margin-bottom: 50px;
}

.grid-right {
  display: grid;
  grid-template-rows: 1fr 2fr 2fr;
  grid-template-columns: 2.5fr 1fr;
  justify-items: center;
  align-items: center;
  margin-bottom: 30px;
}

.item-1r {
  grid-row: 1/2;
  grid-column: 1/3;
  justify-self: left;
}
.item-2r {
  grid-row: 2/3;
  grid-column: 1/2;
}
.item-3r {
  grid-row: 3/4;
  grid-column: 1/2;
}
.item-4r {
  grid-row: 2/4;
  grid-column: 2/3;
}
.item-5r {
  grid-row: 4/5;
  grid-column: 1/3;
  align-self: start;
  justify-self: left;
}

.grid-left {
  display: grid;
  grid-template-rows: 1fr 2fr 2fr;
  grid-template-columns: 1fr 2.5fr;
  justify-items: center;
  align-items: center;
  margin-bottom: 30px;
}

.item-1l {
  grid-row: 1/2;
  grid-column: 1/3;
  justify-self: right;
}
.item-2rl {
  grid-row: 2/3;
  grid-column: 2/3;
}
.item-3l {
  grid-row: 3/4;
  grid-column: 2/3;
}
.item-4l {
  grid-row: 2/4;
  grid-column: 1/2;
}
.item-5l {
  grid-row: 4/5;
  grid-column: 1/3;
  align-self: start;
  justify-self: right;
}

.item-5l summary {
  text-align: right;
}
.item-5l:open {
  text-align: right;
}

details summary {
  /*list-style: circle;*/
  cursor: pointer;
}

/*
details summary::before {
  content: "O ";
  font-size: 1.2em;
  margin-right: 8px;
  color: #2b2b2b;
}

details[open] summary::before {
  content: "X ";
}
*/

.music {
  padding: 20px 0 40px;
  text-align: center;
}

.music iframe {
  border: 3px solid #ffd700;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
  height: 400px;
  width: 1000px;
}

.gallery img {
  /* all: unset; */
  /* box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8); */
  height: 500px;
}

.gallery {
  margin: 20px 0 80px 0;
  justify-self: center;
  width: 70%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.gallery img {
  width: 10%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ffd700;
  transition: all ease-in-out 0.5s;
  transform-origin: top center;
}

.gallery img:hover {
  width: 25%;
  transform-origin: top center;
}
