
@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/Cairopixel.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: 14pt;
  text-indent: 30px;
}
br{
  text-indent: 30px;
}
a{
  font-family: two;
  font-size: 14pt;
}

body{
background: black;
margin:10px;
justify-content: center;
display:grid;
grid-template-columns: 50vw;
grid-template-rows: auto auto auto;
grid-template-areas: 
"navbar"
"section"
"footer";
}

nav{ grid-area: navbar; }
nav, footer{
  border-radius: 15px / 50px;
  list-style-type: none;
  background: #AF1B3F;
  display: flex;
  overflow: hidden;
  border-style: ridge;
  margin: 0;
  padding: 0;
  padding-bottom: 5px;
}

nav a, footer a{
 text-decoration: none; 
 display: block;
 color: #EFC69B;
 text-align: center;
 padding-inline: 10px;
 float: left;
}
nav a:hover,footer a:hover, .more:hover{
  background-color:#473144;
  color: #eee5e2;
}

nav a:hover,footer a:hover{
  margin-bottom: -5px;
}

footer{ grid-area: footer;}

main{
  grid-area: section;
  margin: 3px;
  margin-bottom:10px;
  padding: 10px;
}

.icon{
  width: 5vw;
}
.more{
  border-radius: 15px / 50px;
  background: #AF1B3F;
  overflow: hidden;
  text-align: center;
  color: #AF1B3F;
}
.context{
  border-radius: 10px;
  border-color: #AF1B3F;
  border-style: none solid solid solid;
  border-width: 1px;
  box-shadow:1px 1px 2px #473144, 0 0 5px #AF1B3F;
  background-color: #eee5e2;
  padding: 5px;
}
.screenshot{
  width: 69%;
}


@media(max-width: 700px){
body{
overflow-x:none;
grid-template-columns: 90vw;
grid-template-rows: auto auto auto;
"navbar "
"section"
"footer ";
}

.icon{
  width: 20vw;
}

.screenshot{
  width: 50vw;
}

}