.menu-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    padding:5rem 0rem;
}
.menu-gallery > a > img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.menu-gallery > a{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s;
}
.menu-gallery > a::after {
    font-family: "Artistic", serif;
    display: flex;
    content: attr(alt);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 2.6rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    padding: 0.5em 1em;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    width:100%;
    height:100%;
    align-items: center;
    justify-content: center;
}
.menu-gallery > a:hover::after {opacity: 1;}
h3{padding:10px; font-size: 2rem;}
p{padding:5px;}
hr{width: 1px; padding: 0;margin:0;}
.page-content{
    gap:2rem;
}
.content2{
    background-color: var(--primary);
    border-radius: 16px;
    width: 100%;
    padding:3rem 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
    gap:2rem;
    flex-wrap: wrap;
	color: var(--secondary);
}
.gallery{
    width: 100%;
    padding: 1rem;
	display: grid;
	color: var(--secondary);
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background-color: var(--primary);
    border-radius: 16px;
}
.gallery img{
    height:400px;
    width:100%;
    object-fit: cover;
    border-radius: 8px;
    transition:all 0.3s ;
}
.gallery img:hover{
    height:500px;
}
table {
    border-collapse: collapse;
    font-family: "Visibility", serif;
}
td {
    padding: .6rem 1rem;
    border: 1px solid var(--secondary);
    text-align: center;
}
@media (max-width:800px){
    .menu-gallery{
        grid-template-columns: repeat(1, 1fr);
        padding-bottom:60px;
    }
    .menu-gallery > a{
        border-radius: 14px;
    }
    .menu-gallery > a > img{
        height: 500px;
    }
    .gallery{
        grid-template-columns: repeat(2,1fr);
    }
    hr{display: none;}
    
}
@media (max-width:530px) {
    .gallery{
        grid-template-columns: 1fr;
    }
    .bases{
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: space-around;
    }
    .bases > span{margin-top:1rem;}
}
@media (hover: none), (pointer: coarse) {
  .menu-gallery > a::after {
    opacity: 1;
  }
  .gallery img {
    height: 500px;
  }
  .menu-gallery > a,
  .menu-gallery > a::after,
  .gallery img {
    transition: none;
  }
}