:root {
  --header:#fff;
  --background:url('https://cyboarnetic.neocities.org/img/background.jpg');
  --box:#1c0c50;
  --accent1:#ff5afc;
  --accent2:#6d3dfc;
  --accent3:#20d5e1;
  --bodytext:#fff;
  --navtext:10px;
  --title: 15px bold;
  --u: #daac5c;
  --itallic:#9ea3fd;
  --mark:#7b3ffd;
  --marktext:#fff;
}

a:link, a:visited, a:active { 
color:var(--accent3);
text-decoration:none;
}
a:hover {
color:var(--accent2);
}
b {color:var(--accent3);font-weight:bold;}
i {font-style:italic;color:var(--itallic);}
u {color:var(--u);text-decoration:none;}
mark {background:var(--mark); color:var(--marktext);}
textarea {font:10px calibri;letter-spacing:1px;}
h1, h2, h3, h4, h5 {
font-family: "Silkscreen", sans-serif;
font-weight: 500;
font-style: normal;
color: var(--header);
}
hr {color:var(--accent3);}

body {
  background: transparent;
  width:775px;
  margin:auto;
  color:var(--bodytext);
  font-size:15px;
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.box {
  background:var(--box);
  border: 1px solid var(--accent1);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding:7px;
  margin-bottom:10px;
  overflow:auto;
}
.title {
  background:var(--accent1);
  color:var(--title);
  font-size:17px;
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing:1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding:5px;
}
.title img {
  float: right;
  height:20px;
}

.header { 
  grid-area: header; 
  margin:auto;
}
.header img{
  border-radius:10px;
}
.pic { 
  grid-area: pic; 
  width:100%;
}
.pic img {
  width:100%;
}
.pic2 { 
  grid-area: pic2; 
  width:100%;
}
.pic2 img {
  width:100%;
}
.pic3 { 
  grid-area: pic3; 
  width:100%;
}
.pic3 img {
  width:100%;
}
.info { 
  grid-area: info; 
  width:100%;
}
.info2 { 
  grid-area: info2; 
  width:100%;
}
.info3 { 
  grid-area: info3; 
  width:100%;
}
.stamp { 
  grid-area: stamp;
  text-align:center;
}
.stamp img {
  width:100px;
}
.layout {
  display:grid;
  gap: 10px;
  grid-template-areas:
    'header header header header header header'
    'pic pic info info info info'
    'info2 info2 info2 info2 pic2 pic2'
    'pic3 pic3 info3 info3 info3 info3'
    'stamp stamp stamp stamp stamp stamp';
}