/* 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: #141a36;
                font-family: Georgia;
                background-color: #ffefe2;
                background-image: url("https://file.garden/aD_wNrhR3BZZ-lk3/page%20decor/poo.png");
                background-attachment: fixed;
              }
 
#main {
                background-color:#ffefe2;
                border: 10px solid transparent;
                padding: 0px 20px 20px 20px;
                border-image: url("https://file.garden/aD_wNrhR3BZZ-lk3/page%20decor/New%20Project-14.png") 80 round;
                border-image-width: 15px;
                border-image-outset: 15px;
                width: 75%;
                margin: auto;
                
              }
#title {
                width: 30%;
                height: auto;
                margin: auto;
                text-align: center;
                margin-bottom: 30px;
                text-shadow: -1px 0 #f99243, 0 1px #f99243, 1px 0 #f99243, 0 -1px #f99243;
              }

.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: #141a36;
}

/* visited link */
a:visited {
  color: #141a36;
}

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

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

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

iframe {
    background-color: transparent
}


  @media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr; 
    }
  }

.item {
  position: fixed; right: 10px; bottom: 10px; z-index: 100;
  margin-top:auto;
  transition: 0.5s;
}

.item:hover {
  transform: translate(0, -10px);
}