* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  height: 100vh;
  background-color: aquamarine;
}
body .skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body .skip:focus {
  position: static;
  width: auto;
  height: auto;
}

#container {
  height: 100%;
  background-image: linear-gradient(#2c3e50, #bdc3c7);
  display: grid;
  row-gap: 20px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-template-columns: 40px 250px 1fr 300px 40px;
  grid-template-rows: 40px 150px repeat(2, 1fr) 40px;
  grid-template-areas: ".   .      .       .     ." ".   left   header  right ." ".   left   main    right ." ".   left   main    right ." "footer footer footer footer footer";
}
#container header {
  grid-area: header;
  background-color: gainsboro;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-style: solid;
  border-width: 5px;
  border-color: #000;
  width: 100%;
  height: 100%;
}
#container header h1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 3vw;
  font-weight: bold;
  text-transform: uppercase;
}
#container main {
  grid-area: main;
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 5px;
  border-color: #000;
  background-color: gainsboro;
}
#container aside {
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-width: 5px;
  border-color: #000;
}
#container aside img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#container aside.left {
  grid-area: left;
}
#container aside.right {
  grid-area: right;
  display: grid;
  height: 100%;
  width: 100%;
  background-color: gainsboro;
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  grid-template-columns: 20px 1fr 20px;
  grid-template-rows: 20px 200px 1fr 20px;
  grid-template-areas: ".  .  ." ".  img ." ".  text  ." ".  text  .";
}
#container aside.right img {
  grid-area: img;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: #000;
}
#container aside.right h2 {
  grid-area: text;
  border-style: solid;
  border-width: 5px;
  border-color: black;
}
#container footer {
  grid-area: footer;
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
}/*# sourceMappingURL=AstraMilitarum.css.map */