#gallery-buttons {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-evenly;
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
    width: 30%;
    height: 100%;
    gap: 1.5vh;
}

#gallery-buttons a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #63abf3;
    width: 100%;
    height: 100%;
    border-radius: 0.2cm;
    font-size: xx-large;
}

#gallery-buttons a:hover {
    background: #1161a8;
}

.container {
    margin-top: 1rem;
    position: relative;
    width: 50%;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #000000;
}

.container:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}