/* 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." */
@media only screen and (max-width: 768px) {
  
  aside {
    display: none;
    }
  .stamps {
    display: none;
    }
}

* {
  box-sizing: border-box;
}

header {
  text-align: center;
}
h1 { font-family: 'Comic Sans MS', cursive;
   color: Orange;
   letter-spacing: 2px;
   text-align: center;
  }
body {
  text-align: center;
  background-color: black;
  background-image:url("images/garfbg.gif");
  background-attachment: fixed;
  color: green;
  font-family: "Times New Roman", sans-serif;}
.main {
  Margin: auto;
  background-color: black;
  color: Orange;
  letter-spacing: 0px;
  line-height: 1.8;
  width: 600px;
  padding: 20px;
}
section {
  Margin: auto;
  float: left;
  background-color: Black;
  width: 500px;
  padding: 10px;
}
nav {
  border-radius: 10px;
  text-align: center;
  background-color:  #1dcf4c;
  width: 600px;
  margin: auto;
  padding: 20px;
}
aside {
  position: absolute;
  right: 0px;
  left: 1000px;
  width: 100px;
}
footer {
  Margin: auto;
  clear: left;
  padding: 10px;
  text-align: center;
}
  
/* links */
a:link {color: #a600ff;}
a:visited {color: #a600ff;}
a:hover {color: #d17aff;}
a:active {color: #a600ff;}

a.one:link {font-family: 'Luckiest Guy'; letter-spacing: 2px; font-size: 18px; border-radius: 30px; padding: 4px; color: SlateBlue; background-color:white; text-align: center; text-decoration: none;}
a.one:visited {font-family: 'Luckiest guy'; letter-spacing: 2px; font-size: 18px; border-radius: 30px; padding: 4px;color: SlateBlue; background-color:white; text-align: center; text-decoration: none;}
a.one:hover {font-family: 'Luckiest guy'; letter-spacing: 2px; font-size: 18px; border-radius: 50px; padding: 4px;color: white; background-color:#1dcf4c; text-align: center; text-decoration: none;}

a.two:link {font-family: 'Luckiest Guy'; letter-spacing: 2px; font-size: 18px; border-radius: 30px; padding: 4px; color: white; background-color:lightseagreen; text-align: center; text-decoration: none;}
a.two:visited {font-family: 'Luckiest guy'; letter-spacing: 2px; font-size: 18px; border-radius: 30px; padding: 4px;color: white; background-color:lightseagreen; text-align: center; text-decoration: none;}
a.two:hover {font-family: 'Luckiest guy'; letter-spacing: 2px; font-size: 18px; border-radius: 50px; padding: 4px;color: khaki; background-color:violet; text-align: center; text-decoration: none;}
