* {
  box-sizing: border-box;
  image-rendering: pixelated;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  font-family: arial;
  transition: 0.4s;
  margin: 0;
  padding: 0;
}

:root {
  --grey: #231f20;
  --darkgrey: #080707;
  --white: #e5dbe9;
  --red: #290306;
  --lightred: #70161e;
  --green: #001711;
}

html {
  background:var(--darkgrey);
  color:var(--white);
  scrollbar-color: var(--lightred) var(--red);
}

h1 {
  font-family: "Jolly Lodger", system-ui;
  font-size:80px;
}

h2 {
  text-align:center;
  font-variant: small-caps;
  line-height:36px;
}

hr {
  border-top: 4px dashed var(--white);
  border-bottom: 0;
  margin-top: 8px;
  margin-bottom: 4px;
}

a {
  color: var(--white);
}

a:hover {
  color:var(--lightred)
}

li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul li:before {
  content: "\2665";
  margin: 0 8px;
}

.container {
  width:1000px;
  height:auto;
  margin:auto;
  display:grid;
  grid-template-columns: 200px 800px;
  grid-template-rows: 200px 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px; 
  grid-template-areas:
    "header header"
    "aside article";
}

header {
  background-image:url("https://graveyard.love/assets/header.png");
  background-repeat: no-repeat;
  background-position-x:right;
  background-size:1012px;
  height:200px;
  width:1012px;
  margin:auto;
  padding-top:100px;
  grid-area:header;
}

aside {
  background:var(--lightred);
  grid-area:aside;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-variant: small-caps;
}

nav ul li:before {
  content: "\2665";
  margin: 0 2px;
}

nav ul li:after {
  content: "\2665";
  margin: 0 2px;
}

nav li {
  text-align: center;
  padding: 4px;
}

nav a {
  padding: 16px;
  line-height:28px;
  text-decoration: none;
  color: var(--white);
  transform:scale(1.0);
}

nav a:hover {
  color:var(--white)
}

nav li:hover {
  transform: scale(1.2);
}

.socials {
  padding: 8px;
  font-size: 23.75px;
  display: inline-block;
}

.socials i:hover {
  transform:rotate(-36deg);
  transform:scale(1.2), rotate(-36deg)
}

article {
  background:var(--grey);
  grid-area:article;
  padding:12px 48px;
}

p {
  line-height:24px;
  margin-bottom:24px;
}

@media screen and (max-width: 1000px) {
  
  header {
    width:100%;
  }
  
  .container {
    display:inline-block;
    width:100%;
  }
  
 .socials {
    width:200px;
    height:40px;
   display:block;
    margin:auto;
  }
}

@media screen and (max-width: 870px) {
  h1 {
    font-size:60px;
    padding-left:8px;
  }
}

@media screen and (max-width: 660px) {
  .container {
    margin-top:-60px;
  }
  
  header {
    background-image:none;
    height:200px;
  }
  
  h1 {
    text-align:center;
    padding-top:0px;
  }
}