body {
    background-image: url("../images/gallery.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding: 20px;
}

h1 {
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.profile {
    flex: 1 1 300px;
    margin: 10px;
    text-align: center;
}

.images, .descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.images img, .descriptions img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

a.more-link {
    font-size: 14px;
    padding: 10px 15px;
    position: absolute;
    left: 35px;
    top: 35px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid white;
    transition: all 0.3s ease;
    animation: slideIn 1s ease-in-out;
    color: white;
}

a.more-link:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
    border-color: white;
    text-decoration: underline;
}
