@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Azeret Mono", monospace;
}

.page-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 0.5fr 1fr;
  grid-row-gap: 0px;
  grid-template-areas:
    "a a c c"
    ". b b .";
}

.impress-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 150px auto;
  grid-row-gap: 0px;
  grid-template-areas:
    "a a c c"
    ". b b .";
}

.logo {
  height: 15em;
}

.mail {
  margin: 50px;
  text-decoration: underline;
}

.mail:hover {
  cursor: pointer;
}

header {
  grid-area: a;
}

section.impress {
  grid-area: b;
  text-align: center;
  margin: 120px 0 120px 0;
}

section.content {
  align-self: center;
  justify-self: center;
  grid-area: b;
  text-align: center;
}

section.content ul {
  list-style: none;
  padding: 0;
}

section.content ul li {
  margin-bottom: 1em;
}

footer {
  grid-area: c;
  text-align: right;
  margin-top: 15px;
  margin-right: 20px;
}

footer a,
footer a:link,
footer a:visited {
  color: black;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  header {
    background-size: contain;
  }
}

@media screen and (max-width: 800px) {
  .page-wrapper {
    grid-template-rows: 200px auto 1fr;
  }
  .logo {
    height: 10em;
  }
  section.impress {
    grid-area: b;
    text-align: center;
    margin: 0;
  }
}
