/* 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." */



@font-face {
  font-family: deltarune; /* set name */
  src: url(undertale-deltarune-text-font-extended.otf.woff2); /* url of the font */
}

html, body {
  Margin: 0;
  padding: 0;
  }

body {
  background-color: black;
  background-image: url("depths.gif");
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: cover;
  color: white;
  font-family: deltarune;
  text-align:center;
  float:none;
  }
  
.wrap {
  background-color: rgb(0, 0, 0, 0);
  box-shadow: 0 0 100px transparent;
  max-width:60em;
  height:auto;
  margin:auto;
  padding:10px;
  }

.header {
  background-color: transparent;
  padding:5px;
  }

.middle {
  background-color: transparent;
  padding:5px;
  margin-top:20px;
  margin-bottom:40px;
  }

.footer {
  background-color: transparent;
  padding:5px;
  }
  
h2 {
  text-transform:uppercase;
  }
  
   /* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: white;
} 
