
body
{
    background: linear-gradient(to right, white 0%, green 100%);
}

header
{
    font-size: 50px;
    font-family: "Comic Sans MS";
    text-align: center;
}

#back
{
    font-size: 20px;
    font-family: "Comic Sans MS";

    display: inline-block;
    text-align: left;

    transition: transform 0.3s ease;
}

#back:hover
{
    transform: scale(1.1);
}

h1
{
    font-size: 20px;
    font-family: "Comic Sans MS";
    text-align: center;
}

h2
{
    font-size: 20px;
    font-family: "Comic Sans MS";
    text-align: center;
}

#aboutthegame
{
    font-size: 15px;
    font-family: "Comic Sans MS";
    text-align: center;
}

.image-container
{
    position: relative;
    display: inline-block;
    margin: 10px;
    vertical-align: top;
}

.image-container .caption
{
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 95%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .caption
{
    opacity: 1;
}

.gallery-row
{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
}

#assets
{
    display: block;
    font-size: 15px;
    font-family: "Comic Sans MS";

    text-align: center;

    margin: 0 auto;

}

ul
{
    list-style-type: none;

}

#assets ul li
{
    margin-bottom: 12px; /* Adjust the value as needed */
}

#Download
{
    font-family: Arial, sans-sarif;




    display: block;
    margin: 30px auto;

    width: 250px;

    border: 2px solid black;
    background-color: black;



    border-radius: 999px;


    transition: transform 0.3s ease;
}

#Download a
{
    display: block;
    font-family: "Comic Sans MS";
    text-align: center;
    text-decoration: none;
    color: white;

    width: 100%;
    height: 100%;
    line-height: 40px; /* Match the button height for vertical centering */
}

#Download:hover
{
    transform: scale(1.05);
}
