body{
    background-color: #5fb630;
    margin: 0;
}
br {
    display: block;
    content: "";
    margin-top: 10px; /* Adjust this value for desired spacing */
}
button {
    background-color: #5a3f00; /* Green */
    border-radius: 2px;
    border-style: none;
    display: inline-block;
    padding: 1px 15px;
}
button a{
    color: rgb(173, 143, 76);
    text-decoration: none;
    font-size: 1rem;
}
.feed{
    border-radius: 5px;
    background-color: rgba(156, 124, 48, 0.162);
    color: #ffffff;
    margin: 25px auto;
    padding: 1rem 1rem .5rem;
    width: 60%;
}
.feed h5{
    text-align: end;
}
h1{
    color: #5fb630;
}
h3{
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: sans-serif;
  background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header{
    padding: 1.5rem 1.5rem 0.5rem;
}
nav p{
    margin-top: 0.5rem;
    font-size: 1.5rem;
}
nav ul{
    margin-bottom: 0;
    padding: 0;
}
main{
    align-items: center;
}
footer{
    display: block;
    margin: 2rem;
    text-align: center;
}
footer p{
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

div.somanycats {
    padding: 0rem 2rem;
}
  
div.gallery img:hover {
    border: 1px solid #aaff00;
}
  
div.gallery img {
    max-width: 100%;
    height: auto;
}

  
div.desc {
    padding: 15px;
    text-align: center;
}
  
* {
    box-sizing: border-box;
}
  
.responsive {
    padding: 6px 6px;
    float: left;
    width: 24.99999%;
}
  
@media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }

     .feed{
        width: 90%;
    }
}
  
@media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
}
  
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

#ant {
    animation: crawl 10s linear infinite; /* Adjust duration and timing as needed */
  }
  
  @keyframes crawl {
    0% { transform: translate(0, 0); }
    25% { transform: translate(calc(100vw - 50px), 0); } /* Move across the screen */
    50% { transform: translate(calc(100vw - 50px), calc(100vh - 50px)); } /* Move down */
    75% { transform: translate(0, calc(100vh - 50px)); } /* Move back across */
    100% { transform: translate(0, 0); } /* Return to start */
  }
@media (min-width: 750px){

    h1{
        font-size: 3rem;
    }

    header nav{
	    display: flex;
		justify-content: space-between;
        margin-left: auto;
    }
    nav ul{
        border-bottom: none;
        display: inline;
        margin-left: 1.5rem;
    }


}
