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);
    border: 5px solid red;
    padding: 10px;
    margin: 0;
}
#container {
    display: grid;
    grid-template-areas:
        "header header header header"
        "dish dish dish dish"
        "direct direct ingred ingred"
        "footer footer footer footer"; 
    gap: 10px;
    grid-template-rows: auto .15fr 1fr auto;
    grid-template-columns: 1fr 1fr 1fr .3fr;
    height: max(100vh, auto);
}
.header { 
    grid-area: header; 
    display: flex;
    justify-content: center;
    gap: 50px;
    color: white;
    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;
}
.dish { 
    grid-area: dish;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-size: 300%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 10px;
    color: darkorange;
}
.direct { 
    grid-area: direct;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    font-size: 125%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
    transition-duration: 3s;
}
.direct:hover { 
    grid-area: direct;
    color: rgb(162, 162, 39);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
}
.ingred { 
    grid-area: ingred;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 5px;
    font-size: 200%;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
    transition-duration: 3s;
}
.ingred:hover { 
    grid-area: ingred;
    color: rgb(141, 199, 79);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    font-family: "Rampart One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.footer {
    grid-area: footer;
    color: #FF0000;
    text-align: center;
    padding: 10px;
    font-size: large;
  font-weight: 400;
  font-style: normal;
}
b {
    text-decoration: underline;
    font-weight: bold;
    font-size: 150%;
}
.bb {
    text-decoration: none ;
}
nav {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    padding-bottom: 15px;
    width: 100%;
}
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;
}
@media screen and (min-width: 0px) and (max-width: 640px) {
    #container{
        grid-template-areas:
        "header header header header"
        "dish dish dish dish"
        "ingred ingred ingred ingred"
        "direct direct direct direct"
        "footer 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%;
    }
  }