
@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-indent: 30px;
}
.center{
  text-indent: 0px;
}
br{
  text-indent: 30px;
}
a{
  font-family: three;
  font-size: 18px;
}

body{
background: #121027;
margin:10px;
justify-content: center;
display:grid;
grid-template-columns:40vw 13vw;
grid-template-rows: auto 60px auto auto;
grid-template-areas: 
"header header"
"navbar navbar"
"section aside"
"footer footer";
}

header{
  grid-area: header;
}
.header{
  width:49.7vw;
  color: #DECDC6;
  border-style: outset;
  border-width: 2px;
}

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;
}
.icon{
  width: 10vw;
}
.more{
  border-radius: 15px / 50px;
  background: linear-gradient(to top, #6479af , #7687B2 30%);
  overflow: hidden;
  text-align: center;
}
.context{
  border-radius: 10px;
  border-color: linear-gradient(to top, #6479af , #7687B2 30%);
  border-style: none dotted dotted dotted;
  padding: 5px;
}
.screenshot{
  width: 37vw;
}

aside{
  grid-area: aside;

  margin-bottom:10px;
}
.aside{
  width:12vw;
  color: #DECDC6;
  border-style: outset;
  border-width: 2px;
}

footer{
  grid-area: footer;
  background: linear-gradient(to top, #6479af , #7687B2 30%);
  color: #251E4F;
  border-style: outset;
  border-width: 2px;
  border-radius: 15px/50px ;
}


@media(max-width: 650px){
body{
overflow-x:none;
grid-template-columns: 1fr;
grid-template-rows: auto auto auto auto;
"header "
"navbar "
"section "
"footer ";
}
.header{
  width:90vw;
  color: #DECDC6;
  border-style: outset;
  border-width: 2px;
}
.screenshot{
  width: 80vw;
}
aside{
  display: none;

}
}