body {
  background-color: #140096;
  background-image: linear-gradient(45deg, #1d00d6 25%, transparent 25%, transparent 75%, #1d00d6 75%), linear-gradient(45deg, #1d00d6 25%, transparent 25%, transparent 75%, #1d00d6 75%);
  background-size: 40px 40px;
  background-position: 10px 10px, 30px 30px;
  animation: scrolling 2s infinie linear;
}

@font-face {
  font-family: "Audiowide";
  src: url("https://nocturnecreature.neocities.org/Audiowide/Audiowide-Regular.ttf");
}

.page {
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px 60px 0px;
  font-family: "Audiowide";
}

a {
  color: white;
}

a:hover {
  font-size: 30px;
  transition: 0.5s
}

.gallery {
  display: grid;
  width: 90%;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 5px;
  border: 2px solid blue;
  box-shadow: 5px 2px blue;
  background-image: linear-gradient(to top, black, #0a0882);
}

#myArt {
  cursor: pointer;
  transition: 0.5s;
}

#myArt:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100;
  background-color: rgba(0,0,0,0.9);
  
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  height: 150px;
}

.modal-content, #caption {
  animation-name: meow;
  animation-duration: 0.3s;
}

@keyframes meow {
  from {transform: scale(0);}
  to {transform: scale(1);}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 30px;
  transition: 0.5s;
}

.close:hover,
.close:focus {
  color: #d1eeff;
  text-decoration: none;
  cursor: pointer;
}