html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-image: url('assets/cardboard.jpg');
    font-family: Arial, Helvetica, sans-serif;
}

.title h1{
    text-align: center;
}

.swiper {
    width: 90vw;
    height: 90vh;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    
}



.parent {
    
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: grid;
    border-radius: 1rem;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 1rem;

    
}

.description-div {
    grid-area: 1 / 1 / 3 / 4;
    border: 3px dashed red;
    border-radius: 15px;
    background-image: url('./assets/paper-texture.jpg');
    align-items:center;
    justify-content: center;
    padding: 1rem;
}

.song-div {
  grid-area: 1 / 4 / 3 / 6;
  border: 3px dashed blue;
  background-image: url('./assets/paper-texture.jpg');
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.song-card {
  display: grid;
  grid-template-columns: 45% 1fr; /* cover is just under 50% */
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem;
}

.cover-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.song-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.song-title {
  font-size: 1.3rem;
  margin: 0;
}

.song-artist {
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}


.memory-div {
    grid-area: 3 / 1 / 5 / 2;
    display:flex;
    justify-content: center;
}

.memory-photo {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
      border: 3px dashed green;
    border-radius: 15px;
}

.relationships-div {
    grid-area: 3 / 2 / 5 / 5;
    border: 3px dashed orange;
    border-radius: 15px;
    position: relative;    /* MUST */
    background-image: url('./assets/paper-texture.jpg');
}

.sticker {
  position: absolute;
  width: 90px;
  height: 90px;
  cursor: pointer;
  transition: transform 0.2s;
}

.sticker img {
  width: 100%;
  height: 100%;
  border: 2px dotted #666;
  border-radius: 4px;
  box-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.sticker:hover img {
  transform: scale(1.2) rotate(0deg);
  z-index: 10;
}


.relationships-info-div { grid-area:  3 / 5 / 5 / 6;
    border: 3px dashed black;
    background-image: url('./assets/paper-texture.jpg');
    border-radius: 15px;
    align-items: center;
    justify-content: center;
}