body {
  background-color: white;
  color: black;
  font-family: sketch-font;
  text-align: center;
}

iframe {
  position: fixed;
  width: 1920px;
  height: 1080px;
  z-index: -1;
  top: 0%;
  left: 0%;
  border: none;
}

.main {
  background-color: white;
  border: 15px solid transparent;
  border-image: url("../assets/border.png") 30 stretch;
  margin: 0px 10vw;
}

.main a {
  font-size: 40px
}

@media only screen and (min-width: 1000px) {
  .pictures img {
    object-fit: cover;
    width: 20vw;
    height: 20vw;
    
    border: 10px solid transparent;
    border-image: url("../assets/border.png") 30 stretch;
  }

  .banner {
    margin: 3vw;
  }
}

@media only screen and (max-width: 1000px) {
  .pictures img {
    object-fit: cover;
    width: 200px;
    height: 200px;
    
    border: 10px solid transparent;
    border-image: url("../assets/border.png") 30 stretch;
  }

  .banner {
    width: 200px;
    margin: 3vw;
  }
}

@font-face {
  font-family: sketch-font;
  src: url(../assets/Sketch.ttf);
}