body {
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  height: 100%;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    #1e0074 3.65%,
    #9700dd 22.92%,
    #c51bf9 43.82%,
    #ff6caa 69.27%,
    #e24b64 100%
  );
}

.gallery-title {
  width: 80%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: "Krona One", sans-serif;
  color: white;
  margin: 50px 0px 30px 0px;
}

.gallery {
  width: 80%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery img {
  width: 100%;
  margin-bottom: 40px;
}



.gallery-top{
    margin-top: 50px;
    width: 80%;
    max-width: 1000px;
}

.gallery-top img{
    width: 100%;
    height: auto;
}

.gallery-box{
    margin-top: 50px;
    width: 80%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .gallery-title {
    font-size: 20px;
    margin: 50px 0px 0px 0px;
  }

  .gallery-box{
    margin-top: 0px;
  }
}

.gallery-box img{
    width: 31%;
    height: auto;
    margin-bottom: 20px;
}
