* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

.bg-image {
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/gillbacher.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  min-height: 100%;
  background-attachment: fixed;
  z-index: -1;
}

a {
  text-decoration: none;
}

/* body::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #00000088;
} */

.container {
  padding: 3rem 0;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
}

main {
  background-color: #ffffffee;
  padding: 1.5rem;
  border-radius: 10px;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #333;
}

.btn {
  background-color: yellow;
  color: #000;
  padding: 0.4rem 1rem 0.5rem;
  margin-top: 2rem;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}

.btn:hover {
  background-color: #000;
  color: yellow;
}

main a {
  color: #0090d7;
  font-weight: 600;
}

footer {
  display: flex;
  justify-content: end;
  padding: 1rem;
}

footer ul {
  display: flex;
  gap: 1rem;
}

footer ul li {
  list-style: none;
}
footer a {
  color: #fff;
}

header {
  display: grid;
  padding: 2rem 1rem;
}

header img {
  justify-self: center;
}

@media screen and (min-width: 768px) {
  .grid {
    grid-template-columns: 30% 1fr;
  }

  header img {
    justify-self: end;
  }

  header {
    grid-area: 1 / 1 / 1 / 3;
  }
  main {
    grid-area: 2 / 2 / 2 / 3;
  }
}
