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);
    background-image: url(Images/main_graffiti_pc.png);
    background-size: cover;
    border: 5px solid red;
    padding: 10px;
    margin: 0;
}
#container {
    display: grid;
    grid-template-areas:
        "header header header"
        "name name name"
        "form form form"
        "about about about"
        "footer footer footer"; 
    gap: 10px;
    grid-template-rows: auto .3fr 1fr .5fr 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;
}
.name { 
    grid-area: name;
    color: rgb(202, 255, 166);
    text-align: center;
    border-radius: 5px;
    margin-left: 25px;
    font-size: 400%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 15px;
}
.form { 
    grid-area: form;
    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;
}
.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: 200%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
    transition-duration: 2s;
}
.about:hover { 
    grid-area: about;
    color: rgb(175, 132, 51);
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    border-radius: 5px;
    margin-left: 25px;
    font-size: 200%;
    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;
}
.recipe1:hover, .recipe2:hover, .recipe3:hover, .recipe4:hover, .recipe5:hover, .recipe6:hover {
  color: rgb(45, 186, 83);
}
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;
}

img {
  clip-path: circle(40%);
}
.rampart-one-regular {
  font-family: "Rampart One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
label, input {
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
input {
    padding: 5px;
}
#Gmail {
    margin-top: 0px;
    transition-duration: 3s;
}
#Gmail:hover {
    margin-top: 0px;
    color: #FF0000;
    background-color: rgb(75, 75, 75);
}
#Message {
    margin-bottom: 50px;
    transition-duration: 3s;
}
#Message:hover {
    margin-bottom: 50px;
    color: #FF0000;
    background-color: rgb(75, 75, 75);
}
#Fname {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-right: 10px;
    transition-duration: 3s;
}
#Fname:hover {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-right: 10px;
    color: #FF0000;
    background-color: rgb(75, 75, 75);
}
#Lname {
    margin-top: 25px;
    transition-duration: 3s;
}
#Lname:hover {
    margin-top: 25px;
    color: #FF0000;
    background-color: rgb(75, 75, 75);
}
#submit {
margin-bottom: 25px;
text-align: center;
}
input[type="submit"] {
    background-color: rgb(177, 58, 58);
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition-duration: 1s;
}
input[type="submit"]:hover {
    background-color: black;
    color: rgb(177, 58, 58);
    cursor: pointer;
    box-shadow: 5px 5px rgba(113, 4, 4, 0.4);
}
#submitt {
    width: 150px;
    height: 50px;
    font-size: 85%;
    font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
}
span {
    color: red;
}
#p {
    font-size: larger;
    font-weight: bold;
    margin-bottom: -5px;
}
#d {
    color: rgb(180, 180, 180);
    margin-top: -5px;
}
label {
    margin-right: 10px;
}
.rubik-glitch-regular {
  font-family: "Rubik Glitch", system-ui;
  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"
        "form form form"
        "about about about"
        "footer footer footer"; 
    gap: 10px;
    grid-template-rows: auto 1fr 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%;
    }
    .form {
        text-align: left;
    }
    #submit {
        margin-bottom: 25px;
        text-align: left;
    }
    textarea {
      width: 20em;
    }
    #message {
      align-content: center;
      align-items: center;
    }
    fieldset {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #Fname, #Lname, #Message, #submit, #Gmail {
        margin-top: 5px;
    }
}