html {
  text-align: left;
  font-family: ms gothic, monospace;
  background: rgb(20, 100, 222);
  background-image: url("https://natepokemon.neocities.org/.img/index/clouddither.png");
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: medium;
}

a:hover {
  color: rgb(128, 175, 255);
  font-size: 17px;}

.center-container {
  margin: left;
  display: grid;
  width: min-content;
  height: min-content;

}
.grid-container {
  display: grid;
  width: min-content;
  height: min-content;
}

.sidebar {
  grid-area: 1 / 1 / 3 / 2;
  border: 1px solid black;
  background: conic-gradient(#F8DF42 90deg, #F8D042 90deg 180deg, #F8DF42 180deg 270deg, #F8D042 270deg);
  background-repeat: repeat;
  background-size: 60px 60px;
  width: 210px;
  margin-right: 10px;
  margin-top: 15px;
}


.banner {
  grid-area: 1 / 2 / 2 / 3;
  border: 1px solid black;
  background-size: cover;
  background-image: url("https://natepokemon.neocities.org/.img/index/mawile.png");
  width: 660px;
  height: 205px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.main {
  grid-area: 2 / 2 / 3 / 3;
  border: 1px solid black;
  background-image: linear-gradient(rgb(245, 245, 254), rgb(245, 245, 254), rgba(255, 255, 255, 0.519));
  height: 570px;
  padding: 13px;
  overflow:auto;
}



.footer {
  grid-area: 3 / 1 / 4 / 3;
  display:flex;
  border: 1px solid black;
  background: rgba(255, 255, 255, 0.537);
  height: auto;
  margin-top: 10px;
  padding: 15px;
}

.nav-box {
  text-align: left;
  border: 1px solid black;
  margin-top: 10px;
  padding-left: 15px;
  width: 150px;
  height: auto;
  background-color: rgb(245, 245, 254);
  margin: auto;
}

a {
  display: block;
  color: rgb(10, 92, 190);
}

#nav-title {
  padding-top: 16px;
  margin: 6px;
  color: black;
}


mark {
  height: 1.15em;
  line-height: 1.20;
}

.miku {
  position: absolute;
  margin-top: 325px;
  margin-left: 720px
}


.flower {
  position: absolute;
  margin-top: 710px;
  margin-left: 750px
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: rgb(0, 93, 214);
}

::selection {
  color: white;
  background: rgb(0, 93, 214);
}


table {
  background-color: rgb(240, 242, 252);
  border-collapse: collapse;
  width: 80%;
  overflow-y:scroll;
  height:165px;
  display:block;
}

td, th {
  border: 1px solid black;
  text-align: left;
  padding: 8px;
  
}

td:nth-child(odd) {
  background-color: #ebe683;
}

           



