body {
  background-image: url("journal-background.avif");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
#main {
  width: clamp(500px, 90vw, 1500px);
  height: 78vh;
  border: 1px solid;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0,0,0,0.3);
  position: relative;
}

#text1 {
  width: 100%;
  height: 50px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Rubrick', sans-serif;
  text-shadow: 3px 3px 2px black;
  color: white;
  align-content: center;
  text-align: center;
  
}
.scroll {
  position: absolute;
  font-family: 'Libel Suit', sans-serif;
  color: white;
  top: 146px;
  overflow-y: auto;
}
.images{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
a {
  font-size: 3rem;
  font-family: 'Libel Suit', sans-serif;
  color: white;
  text-shadow: 3px 3px 2px black;
}
#home {
  width:100%;
  height:100px;
  position:absolute;
  left:0px;
  bottom:-100px;
}
@media (max-width:640px) {
  #main {
    width: 95%;
    margin-top: 10vh;
  }
  .scroll {
    width: 90%;
    height: calc(-200px + 100%);
    border: 3px solid;
    padding: 10px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px black;
    left: 50%;
    transform: translateX(-50%);
  }
  #text1 {
    font-size: 3.7rem;
    line-height: 40px;
    top: 32px;
  }
  .images {
    left: 50%;
    transform: translateX(2.5%);
  }
  #img1 {
    width: 95%;
    aspect-ratio: 2559 / 1439;
    background-image: url("photography1.png");
}
  #img2 {
    width: 95%;
    aspect-ratio: 2501 / 3765;
    background-image: url("photography2.jpeg");
}
  #img3 {
    width: 95%;
    aspect-ratio: 4032 / 2268;
    background-image: url("photography3.jpeg");
}
  #img4 {
    width: 95%;
    aspect-ratio: 3684 / 2072;
    background-image: url("photography4.jpeg");
  }
}
@media (min-width:641px) {
  #main {
    margin-top: calc(5vh + 30px);
  }
  .scroll {
    width: calc(-110px + 100%);
    height: calc(-200px + 100%);
    border: 5px solid;
    padding: 20px;
    font-size: clamp(1.5rem, 3vw, 3rem);
    text-shadow: 3px 3px 5px black;
    left: 50%;
    transform: translateX(-50%);
  }
  #text1 {
    font-size: clamp(5rem, 6vw, 7.5rem);
    line-height: 51px;
    top: calc(-33px + 0.75 * (clamp(5rem, 6vw, 7.5rem)));
  }
  #img1 {
    width: 50%;
    aspect-ratio: 2559 / 1439;
    background-image: url("photography1.png");
    float: right;
    border-left: 30px solid rgba(0,0,0,0);
  }
  #img2 {
    width: 38%;
    aspect-ratio: 2501 / 3765;
    background-image: url("photography2.jpeg");
    float: left;
    border-right: 30px solid rgba(0,0,0,0);
  }
  #img3 {
    width: 59%;
    aspect-ratio: 4032 / 2268;
    background-image: url("photography3.jpeg");
    float: right;
    border-left: 30px solid rgba(0,0,0,0);
  }
  #img4 {
    width: 65%;
    aspect-ratio: 3684 / 2072;
    background-image: url("photography4.jpeg");
    float: left;
    border-right: 30px solid rgba(0,0,0,0);
  }
}