body
{
    background-color: black;
}

h1
{
    text-align: center;
    font-family: monospace;
    color: white;
    font-size: 30px;
}

p
{
    text-align: center;
    font-family: monospace;
    color: white;
    font-size: 20px;
}

a:link
{
    color:yellow;
}

a:visited
{
    color: rgb(174, 172, 0);
}

a:hover
{
    color: rgb(255, 245, 46);
}

.boxnotice
{
    background-color: rgb(0, 0, 0);
    border: 2px solid white;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
}

.ImageContainer {
    background-color: rgb(0, 0, 0);
    border: 2px solid white;
    width: 220px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
}

.ImageContainer img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    display: block;
    border-bottom: 1px solid #222;
}

.ButtonGroup {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 16px 0;
    gap: 8px;
    background: transparent;
}

.ViewButton
{
    background-color: rgb(0, 0, 0);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    flex: 1 1 0;
    margin: 0 4px;
    border-radius: 6px;
}

.download-btn
{
    background-color: rgb(0, 0, 0);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    flex: 1 1 0;
    margin: 0 4px;
    border-radius: 6px;
}

.Gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    background-color: rgb(10, 10, 10);
    justify-items: center;
}
