
@font-face {
  font-size: 1rem;
  font-family: one;
  src: url("fonts/CHAOS16.otf"), format("truetype");
}

@font-face {
  font-size: 0.8rem;
  font-family: two;
  src: url("fonts/iosevka-light.ttf"), format("truetype");
}

@font-face {
  font-size: 1rem;
  font-family: three;
  src: url("fonts/Pixelzone.ttf"), format("truetype");
}

h3{
  font-family: one;
}
p{
  font-family: two;
  font-size: 14px;
  text-align: center;
}

br{
  text-indent: 30px;
}
a{
  font-family: three;
  font-size: 18px;
  text-align: center;
}

body{
background: #121027;
background-image: url("img/depths_deltarune_Sprite.png");
background-blend-mode: overlay;
margin:10px;
justify-content: center;
display:grid;
grid-template-columns: 30vw;
grid-template-rows: auto auto auto auto;
grid-template-areas: 
"navbar"
"section";
}

nav{
  grid-area: navbar;
}
ul{
  border-radius: 15px / 50px;
  list-style-type: none;
  background: linear-gradient(to top, #6479af , #7687B2 30%);
  height: 35px;
  overflow: hidden;
  border-style: ridge;
  margin: 0;
  padding: 0;
  padding-bottom: 5px;
}
nav a, footer a{
 text-decoration: none; 
 display: block;
 color: #251E4F;
 text-align: center;
 padding: 10px;
}
a:hover{
  background-color:#251E4F;
  color: #DECDC6;
}
li{
  float:left;
  border-width: 2px;
}

main{
  grid-area: section;
  background: linear-gradient(to top, #DECDC6, #eee5e2);
  color: #251E4F;
  border-style: outset;
  border-width: 2px;
  margin-right:10px;
  margin-bottom:10px;
  padding: 10px;
}


@media(max-width: 650px){
body{
overflow-x:none;
grid-template-columns: 1fr;
grid-template-rows: auto auto auto auto;
"navbar"
"section";
}
}