/* 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 {
  background-color: orange;
  color: white;
  font-family: Verdana;

}

h1{
  text-align: center;
  font-family: Showcard Gothic;
  letter-spacing: 5px;
  text-shadow: 4px 3px black;
  }
  
.active {
  color: red;
}
.topnav {
  background-color: teal;
  color: white;
  font-family: Verdana;
  text-align: center;
  padding: 30px;
}

.mainpagebody {
  background-color: white;
  color: orange;
  text-align: left;
  padding: 10px;
  margin: 50px;
}



.silly {
  background-color: #669933;
  color: orange;
  margin: 50px;
  margin-bottom: 65px;
  padding: 90px;
  padding-bottom: 200px;
}
  
.post{
  background-color: white;
  color: orange;
  text-align: left;
  padding: 10px;
  margin: 50px;
}  

.image-hover {
    width:300px;
    height:300px;
    display: block;
    background-image: url('/pictures/me.png'); /* Default image URL */
    background-size: cover; /* Optional: ensures image covers the div */
    /*transition: background-image 0.3s ease; /* Optional: smooth transition */
    float: left;
}

.image-hover:hover {
    background-image: url('/pictures/me2.png'); /* Image URL on hover */
    float: left;
}

div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 5px solid Coral;
}

div.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}


.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.Gallery{
background-color: black;
}
