* {
  font-family: 'Cinzel-SemiBold', Georgia, serif;
}
.container {
  display: grid; 
  grid-template-columns: 1fr 2fr 2fr; 
  grid-template-rows: auto; 
  gap: 0px 0px; 
  grid-template-areas: 
    "Logo Clear1 Clear1"
    "Resources Hero Hero"
    "Resources Hero Hero"
    "Contribute Clear2 Clear2";
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
  .container {
     display: block;
    padding: 1rem;
  }

  .Logo, .Resources, .Hero, .Contribute, .Clear1, .Clear2 {
    grid-area: unset;
    margin-bottom: 1rem;
  }
}

@font-face {
  font-family: 'Cinzel-SemiBold';
  src: url(fonts/Cinzel-SemiBold.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

.Logo { 
  grid-area: Logo;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.Logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.Resources { 
  grid-area: Resources;
  outline: 2px dashed #C8CBC4;
  outline-offset: 4px;
}

.Resources h2,
.Contribute h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.Resources a,
.Contribute a {
  color: #C8CBC4;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.Resources a:visited,
.Contribute a:visited {
  color: #C8CBC4;
}

.Resources a:hover,
.Contribute a:hover {
  text-decoration: underline; /* only on hover */
}

.Resources ul,
.Contribute ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 1rem;
}

.Resources li,
.Contribute li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.Resources img,
.Contribute img {
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
}

.Hero { 
  grid-area: Hero;
}

.Hero img {
  max-width: 100%;
  height: auto;
  display: block;
}

.Contribute { 
  grid-area: Contribute;
  outline: 2px dashed #C8CBC4;
  outline-offset: 4px;
}

.Clear1 { 
  grid-area: Clear1; 
}

.Clear2 { 
  grid-area: Clear2; 
}

html, body {
  background-color: #000102;
  color: #C8CBC4;
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

html {
  font-size: 16px;
}