/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
.container {
  width: 100%;
  max-width: 960px; 
  margin: 0 auto;
  padding: 0 16px;  
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;    
    padding: 0 12px;
  }
  img {
  max-width: 100%;
  height: auto;
}
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.5em;
  }
}
.body {
  background-image: url('images/stars.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.star1 {
  animation: 3s linear 1s infinite alternate twinkle;
}

.star2 {
  animation: 4s linear 0s infinite alternate twinkle;
}

.star3 {
  animation: 3.5s linear 0.5s infinite alternate twinkle;
}

.star4 {
  animation: 1.25s linear 1.5s infinite alternate twinkle;
}

.star5 {
  animation: 4s linear 2s infinite alternate twinkle;
}

.star6 {
  animation: 2.5s linear 1s infinite alternate twinkle;
}

@keyframes twinkle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {                  
font-family: 'Templegarten';
src: url(https://humantooth.neocities.org/fonts/Templegarten.woff) format('woff');
font-weight: normal;}
@font-face {                  
font-family: 'JacquardaBastarda-9';
src: url(https://humantooth.neocities.org/fonts/JacquardaBastarda9.woff2) format('woff2');
font-weight: normal;}
