body {
    margin: 0;
    padding: 0;
    background-image: url('ocean.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 1000px 1000px; 
    background-position: center;
    font-family: Arial;
    font-style: none;
    animation: moveBackground 45s linear infinite;
}


@keyframes moveBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 0;
  }
}

.intro {
background: white;
border: 4px solid black;
font-family: Arial;
margin: 10px 0px;
padding: 10px 10px;
font-style: none;
font-size: 15px;
}

.intro a,
.intro a:visited {
  color: inherit;
  text-decoration: none;
}

.content {
    max-width: 75%;
    margin: 0 auto;
    background-color: rgba(10, 50, 130, 0.8);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    text-align: center;
    border: 10px solid grey;
font-size: 20px;

}

   .banner {
      background: linear-gradient(to top left, #145a32, #43ba59);
      text-align: center;
      color: black;
      font-family: Georgia, serif;
border: 4px solid black
    }

.banner a,
.banner a:visited {
  color: inherit;
  text-decoration: none;
}

.grid-row {
  display: flex;
  justify-content: center; 
  gap: 0px;               
  flex-wrap: wrap;         
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 280px); 
    gap: 20px 20px;
   
width:fit-content;

}


.aboutme {
border: 4px solid black;
background: white;
margin: 0px 0px;
max-width: 600px ;
}


.display { 
align-items: center;
color: white;
}

.option-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 100px;
    background: linear-gradient(to top left, #43ba59, #145a32);
    color: black;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    border: 4px solid transparent;
    box-sizing: border-box;
    transition: border 0.3s ease, transform 0.2s ease;
}

.option-box2 {
}

.option-box3 {
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: linear-gradient(to top left, #43ba59, #145a32);
    color: black;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    border: 4px solid transparent;
    box-sizing: border-box;
    transition: border 0.3s ease, transform 0.2s ease;
}

.option-box4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 100px;
    background: linear-gradient(to top left, #43ba59, #145a32);
    color: black;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    border: 4px solid transparent;
    box-sizing: border-box;
    transition: border 0.3s ease, transform 0.2s ease;
}

.option-box5 {
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: linear-gradient(to top left, #43ba59, #145a32);
    color: black;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    box-sizing: border-box;
    transition: border 0.3s ease, transform 0.2s ease;
}



.option-box:hover {
    border: 6px solid #cefd54;
    transform: scale(1.03);
}

.option-box2:hover {
filter: brightness(85%);
}

.offset {
    margin-top: 0px;
}

.threepics {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
color: white;
}



.pokelist {
background: white;
width: 100%;
border: 4px solid black;
}

.pokedexentry {
  background-color: white;
  color: black;
  border: 4px solid black;
  margin: 20px 0px;
  padding: 20px;
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  min-width: 350px;
  border-collapse: collapse;
  text-align: center
}

.pokedexentry tr:nth-child(odd) {
  background-color: #0d7f76;
  border: 2px solid black;
  color: white;
}





.grid-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}