/* latest.css */
body {
    background-color: #050609;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

h1 {
    color: white;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

#image-container {
    display: grid;
    grid-gap: 10px;
    justify-content: center;
    grid-template-columns: repeat(4, 100px);
}

.image {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-container a {
    display: block;
    text-decoration: none;
}

#avatar-link {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .image {
        width: 150px;
        height: 150px;
        margin-bottom: 0px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    #image-container {
        grid-template-columns: 1fr;
    }

    #donate-link {
        display: none;
    }

    #bottom-left-text {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .image:hover {
        transform: scale(1.1);
    }
}

#donate-link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: rgb(155, 175, 85);
    font-size: 15px;
    text-decoration: none;
}

#bottom-left-text {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 15px;
    display: block;
}

/* Hover effect for GIF transition */
.image.hovered {
    opacity: 1;
}