/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
 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;
}
/* HTML5 display-role reset for older browsers */
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;
}

header {
  background-color: #d16767;
  color: #e7b3b3;
  padding: 1rem;
  text-align: center;
}

.item4 {
    object-fit: cover;
    width:100%; 
    height:85%;
  }

img {
    width: 100%;
    height: 170%;
}

.item1 {grid-area: header;}
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }
.item5 { grid-area: footer; }
.item6 { grid-area: image; }

.grid-container {
    display: grid;
    grid-template-areas:
      'header header header header header header'
      'main main main main right right'
      'image image image image image image'
      'menu menu menu menu menu menu'
      'footer footer footer footer footer footer';
      gap: 10px;
      background-color: #701414;
      padding: 10px;
}

.font {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.grid-container > div {
  background-color: rgb(255, 255, 255);
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
}


h1 {
    text-align: center;
}

.font {
    font-family: "Rubik Wet Paint", system-ui;
    font-weight: 400;
    font-style: normal;
  }

  .item2 {
    font-size: 100%;
  }
  body {
    color: #dd8181;
  }
  .social-media {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-media a {
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
}

.social-media a:hover {
    color: #555;
}
.hamburger {
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: center;
}

.menu.active {
    display: flex;
}

.menu a {
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    background-color: #ce7171;
    width: 100%;
    text-align: center;
}

.menu a:hover {
    background-color: #611c1c;
}