body {
  font-family: sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr minmax(5rem, auto) auto;
    gap: 15px 15px;
    grid-template-areas: 
    "header"
    "content"
    "footer";
  }

    .comicBox {
      margin: auto;
      border: 2px solid black;
      box-shadow: 5px 5px;
      padding: 2em;
  
      img {
        float: right;
        margin: 0 0 1em 1em;
        max-width: 50%;
      }
  
      max-width: 80%;
    }

    header {
      grid-area: header;
      background: orange;
      border-radius: 15px;
      font-weight: bold;
      display: flex;
      align-items: center;
    
      .login {
        margin-left: auto;
        margin-right: 40px;
      }
    
      ul {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content:flex-start;
        align-items: center;
        list-style: none;
        column-gap: 1em;
      }
    
      a {
        color: black;
        text-decoration: none;
      }
    
    img {
      width: 5rem;
    }
    }


@media screen and (min-width: 980px) {
  .container {
  display: grid;
  grid-template-columns: 16rem 1fr 16rem;
  grid-template-rows: auto 1fr auto;
  gap: 15px 15px;
  grid-template-areas:
    "header header header"
    "content content content"
    "footer footer footer";
  min-height: 100vh;
  }

  .comicBox {
    max-width: 60%;
  }

  header {

    ul {
      flex-direction: row;
    }
  }
}




article {
  margin: 1rem;
  line-height: 1.4;
}




main {
  grid-area: content;
}


footer {
  grid-area: footer;
  color: white;
  font-weight: bold;

  background: orange;
  border-radius: 15px;

  a {
    text-decoration: none;
    color: white;
    
  }

  ul {
    display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  }

  li {
    flex: 1 auto;
    margin: 5px;
    line-height: 1.5;
  }
  
}

.socials {
  img {
    width: 1.5rem;
  }
  display: flex;
  flex-direction: row;
  align-items: center;
  p {
    padding-right: 1rem;
  }
}

/*.Uhr {
  background-color: black;
  border-style: solid;
  border-radius: 20px;
  border-width: 0.5rem;
  border-color: green;
  color: green;
  font-family: 'Courier New', Courier, monospace;
  font-size: 60px;
  text-shadow: 0px 0px 30px white;
  font-weight: bolder;
  padding: 1rem;
  width: fit-content;
}*/