body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #555;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("../img/slimefootAndSquee.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: 100% 100%;
}

header {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 5px;
}

main {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-width: 40%;
  max-width: 90%;
  margin: 0 auto;
  color: white;
  background-color: #444;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  flex-grow: 1; /* Allows main content to grow and push the footer to the bottom */
}

div.img {
}


footer {
  max-height: 50px;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: #FFF;
  border-radius: 5px;
  position: fixed;
  bottom: 0;
  left: 0;
}

a {
  color: white;
  text-underline-mode: false;
}

a:hover {
  text-decoration: underline;
  color: #dcb5fd;
}

div.images {
  display: flex;
  flex-direction: column; /* Stacks images vertically */
  align-items: center;    /* Centers images horizontally */
  gap: 20px;              /* Adds space between images */
}

div.imagesF {
  display: flex;
  flex-direction: row;  /* Lays out images in a row */
  justify-content: center; /* Centers images horizontally */
  align-items: center;    /* Aligns images vertically */
  gap: 20px;              /* Adds space between images */
}


img {
  width: 100%;
  max-width: 400px;
  display: block;
}

img.generic {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

img.logo{
  width:100%;
  max-width:30px;
  padding-left: 2%;
  padding-right: 2%;
}

.menu {
  text-decoration: none;
}

div.projects {
  text-align: left;
}

div.box {
  clear: both;
  color: #ffffff;
  overflow: hidden;
  background-color: #584c6c;
  padding: 0.7ex;
  border-top: 1px solid #222;
  border-bottom: 1px solid #242423;

}
