/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html {
  background-color: yellow;
}
h1 {
  color: black;
  margin: 0;
  padding: 20px 0;
  text-shadow: 3px 3px 1px gray;
  text-align: center;
}
body {
  background-color: #B22222;
  color: white;
  font-family: "Marcellus";
  font-size: 12;
  margin: 0 auto;
  padding: 0 15px 15px 20px;
  border: 3px solid white;
}
.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 3fr;
  gap: 3px;
  background-color: black;
  padding: 5px;
}
.container div {
  background-color: lightgray;
  color: black;
  width: calc(100% - 10px);
  padding: 5px;
}
.div.header {
  grid-area: header;
  color: black;
  text-align: center;
}
menu {
  grid-area: menu;
  color: black;
}
.div.content {
  grid-area: content;
}
.div.footer {
  grid-area: footer;
  color: black;
  text-align: center;  
}
@supports not (display: grid){
  .warning {
    background-color: pink;
    padding: 10px;
    border: 1px solid red;
  }
}
li {
  background-color: orangered;
  color: black;
  border: 3px solid white;
  margin-bottom: 5px;
  font-weight: 700;
  text-align: center;
  width: calc(50% - 5px);
  text-shadow: 1px 1px 0 gray;
}
.outer1 {
  border: 10px solid black;
}
.box1 {
  padding: 5px;
  width: calc(100% - 10px);
  background-color: lightgreen;
  color: darkblue;
}
.outer2 {
  border: 5px solid black;
  width: 100px;
  height: 100px;
  transform: rotate(0.8turn);
  margin: 30px;
}
.box2 {
  margin: 30px;
  width: 100px;
  height: 100px;
  background-color: red;
  transform: rotate(0.8turn);
}
img {
  position: relative;
}