body {
    background: url('/torty/user/images/background.jpg') no-repeat center center fixed;
    background-size: cover; /* fills the screen better */
    color: #000000;
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery a {
    display: inline-block;
    text-decoration: none;
}

.gallery img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
#footer {
  color: #000000;
}
