html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
Body {
    background-color:rgb(0, 0, 0);
    border: 5px solid red;
    padding: 10px;
    margin: 0;
    background-image: url(Images/main_graffiti_pc.png);
}
#container {
    display: grid;
    grid-template-areas:
        "header header header"
        "name name name"
        "about about about"
        "about about about"
        "footer footer footer"; 
    gap: 10px;
    grid-template-rows: auto .3fr 1fr 1fr auto;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100vh;
}
.header { 
    grid-area: header; 
    display: flex;
    justify-content: center;
    gap: 50px;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.4);
    font-size: xx-large;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding:10px;
    margin-bottom: 50px;
}
.name { 
    grid-area: name;
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px;
    margin-left: 25px;
    font-size: 400%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.about { 
    grid-area: about;
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 5px;
    margin-left: 25px;
    font-size: 250%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
}
.footer {
    grid-area: footer;
    color: rgb(255, 0, 0);
    text-align: center;
    padding: 10px;
    font-size: large;
    font-weight: 400;
    font-style: normal;
}
a:link {
  color: rgb(255, 255, 255);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(255, 255, 255);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: rgb(255, 255, 255);
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: rgb(255, 255, 255);
  background-color: transparent;
  text-decoration: none;
}
.nv:hover {
  color: rgb(142, 0, 0);
  text-shadow: 2px 2px #FF0000;
  font-size: 150%;
}

.nv {
  font-size: 125%;
  transition-duration: 1s;
}

.trash:hover {
  color: rgb(0, 14, 142);
  font-size: 125%;
}

.trash {
  font-size: 100%;
  transition-duration: 1s;
}

img {
  float: right;
  clip-path: circle(40%);
  shape-outside: circle(45%);
  margin-right: 50px;
}
.rampart-one-regular {
  font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 0px) and (max-width: 640px) {
    #container{
        grid-template-areas:
        "header header header"
        "name name name"
        "about about about"
        "about about about"
        "footer footer footer"; 
    gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
    body {
      background-color: rgb(0, 0, 0);
      font-size: x-small;
    }
    img {
      height: 100px;
      width: 100px;
    }
    .header {
      font-size: 238%;
    }
  }