img {
    width: 300px;
    height: auto;
    margin-top: 3px;
}

.galleria {
    text-align: center;
}

.gallery-menu {
    text-align: center;
    padding: 10px;
    background-color: lightgray; 
    margin-bottom: 10px;
  }

.gallery-menu a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

.gallery-menu a:hover {
    background-color: gray; 
  }

@media (min-width: 1280px){
    img {
        width: 400px;
        height: auto;
    }
}

@media (min-width: 321px) and (max-width: 425px){
    img {
        width: 400px;
        height: auto;
    }
}

@media (min-width: 426px) and (max-width: 768px){
    img {
        width: 200px;
        height: auto;
    }
}