* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;

  /* background: linear-gradient(
    to top,
    #ff508d,
    #ff8b59,
    #e7ff70,
    #5eff81,
    #61a3ff
  ); */
  background: #fcfaf4;
  background-repeat: no-repeat;
}

.page-container {
  height: 100vh;
  height: 100dvh;
}

.logo {
  width: 12rem;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  z-index: 1;
}

.drawings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  gap: 2rem;
  height: 100%;
  transform: scale(0.8);
}

.drawing {
  background: white;
  border-radius: 10%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: black solid 0.4rem;
  box-shadow: 0 0 2.5rem 0 black;
  > img {
    width: 100%;
    filter: grayscale(100%) contrast(100%);
  }
}
.scroll-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 14%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.scroll-bar img {
  width: fit-content;
}

.scroll {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 720px) {
  .drawings a {
    width: 80%;
  }
}

@media screen and (min-width: 1024px) {
  .drawings a {
    width: 60%;
  }
}