/* 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 {
  background-color: AntiqueWhite;
  color: #C0503A;
  font-family: Verdana;
  text-align: center;
  background-image: url(../images/seigaiha.png);
}
h1{
  background: rgba(200, 137, 55, 1);
  padding: 20px 0px 20px 0px;
  color: cornsilk;
  font-size: 3rem;
  margin-block: 0px;
}
p{
  margin: 5px;
}

a{
  color: inherit;
}
a:hover,
a:focus-visible{
  color: #F5856F;
}

ol,
ul{
  padding: 0px;
  text-align: center;
  list-style-position: inside;
}
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.banner{
 background-image: url("../images/foliage banner 2.png");
 background-position: top;
 background-repeat: repeat-x;
 background-size: 400px auto;
 padding: 0px 0px 110px 0px;
 margin: 0px;
 color: rgba(0,0,0,0);
  
}
.noMarginUp{
  margin-block-start: 0px;
}
.margin40{
  margin: 40px
}
.hobbies {
  max-inline-size: 500px;
  margin-inline: auto;
  background: rgba(200, 137, 55, 0.3);
  color: #C0503A;
  text-align: center;
  padding: 20px;
}
.hobbies a:hover, a:focus-visible {
  color: white;
}
.menuImages{
  width: 100px;
  height: auto;
}
.grid-layout{
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  max-inline-size: 750px;
  margin: auto;
}
    
footer {
  padding: 20px;
}

