body {
    background-color: #FAD066;
    background-image: url("picnic.png");
    background-size: fill;
}

.scroll {
  color: white;
  position: absolute;

  left: 360px;
  top: 50px;

  width: 40%;
  height: calc(100vh - 100px);

  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 30px;
  box-sizing: border-box;
  
  margin-left: 70px;
}

.scroll img {
  width: 100%;
  height: auto;
  display: block;
}

.photo_scroll {
    width: 55%;
    height: 100vh;

    overflow-y: auto;
    overflow-x: visible;

    scrollbar-width: none;
}