/* 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 {
                color: #e3d7b3;
                font-family: Mali;
                background-color: #1c3a6b;
                background-image: url("https://file.garden/aD_wNrhR3BZZ-lk3/jirachi%20mention/New%20Project(39).png");
                background-attachment: fixed;
              }
 
#main {
                background-color:#1c3a6b;
                border: 10px solid transparent;
                padding: 0px 20px 20px 20px;
                border-image: url("https://64.media.tumblr.com/0506b0154ce75051337d55f5b2c2e2d4/d278c040d43952b7-07/s1280x1920/ff1b70b5adb83fe447d6213603e40bf708ae536a.pnj") 80 round;
                border-image-width:15px;
                border-image-outset: 15px;
                box-shadow: 1px 1px;
                box-shadow: -1px -1px;
                width: 75%;
                margin: auto;
                
              }

#title {
                width: 50%;
                height:auto;
                margin: auto;
                text-align: center;
                margin-bottom: 30px;
                text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
              }

.title {
                max-width: 100%;
                height: auto;
                filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.5));
              }

h1  {
                text-align: center;
              }

h2  {
                font-weight: bold;
              }

.underline {
                text-decoration: underline wavy 5%;
              }

.center {
                text-align: center;
              }

a:link {
  color: #e3d7b3;
}

/* visited link */
a:visited {
  color: #e3d7b3;
}

/* mouse over link */
a:hover {
  color: #e3d7b3;
}

/* selected link */
a:active {
  color: #e3d7b3;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  padding: 5px;
  gap: 5px;  
  overflow: auto;
}
.container div {
  padding: 10px;
  text-align: left;
}

  @media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr; /* One single column */

.image-container img {
    /* Smooth transition for the transform property over 0.3 seconds */
    transition: transform 0.3s ease;
    /* Ensure the image does not move initially */
    transform: translateY(0);
}

.image-container img:hover {
    /* Move the image upwards by 10 pixels on hover */
    transform: translateY(-10px);
}

@media only screen and (max-width: 600px)
    .image-container img {
        max-height: 10px%;
    }
}