/* 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." */

body {
  font-family: Verdana;
}
aside {
  width: 200px;
  padding: 10px;
  background-color: white;
  border-style: solid;
}
a {
  color: #FE352C;
}
a:hover{
  /* normal hover color: #FE6858; */
  color: #5AE645;
}
main {
  flex: 1;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(10px, auto) );
}
.limit-size{
 max-height: 450px;
}
.limit-width{
  max-width: 300px;
}
.flex-container {
    display: flex;
}
.flex-child {
 max-width: 700px;
}
.flex-child:first-child {
    margin-right: 20px;
} 
.logo {
 font-size: 30px;
}
.sub {
  color: gray;
  font-size: 10px;
}
.sub:hover {
  color: black;  
}
.box {
  padding: 20px;
  background-color: white;
  border-style: solid;
  margin: 5px;
}
.auto-img{
  width: 100%;
  height: auto;
}
.scroll{
  overflow-y: scroll;
}
@keyframes background {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 300px 200px;
  }
}