/* preliminary */
:root
{
    --main-color: darkgray;
    --foreground-color: #5DAD4A
}


@font-face {
    font-family: 'MinecraftRegular'; /* Name of the font */
    src: url('../fonts/MinecraftRegular-Bmg3.otf') format('opentype'); /* Path to the font file */
}

html, body {
    font-family: 'MinecraftRegular', sans-serif; /* Apply the custom font */
    font-weight: 100;
    background-color: #F4EBD0;
    margin: 0;
    margin: 0;

}


/* announcement */
.announcement
{
    text-align: center;
    background-color: #f0b538;
}
.announcement h1
{
    font-size: 1em;
}


/* header */
header nav
{
    display: flex;
    flex-direction: row;
    gap: 3em;
}
header nav .navbar
{
    display: flex;
    flex-direction: column;

    font-size: 2em;
}
header nav img
{
    width: 300px;
}

/* downloads */
main
{
    /* background-image: url('../images/bg.png'); */
    background-position: 0 55%;
    padding: 5em;
}

main .serverFiles
{
    display: flex;
    flex-direction: column;

    text-shadow: 0px 0px 20px #ffffff;
}

main .left-container
{
    width: 50%;
    margin: 5em 10em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
}
/* button style */
main .left-container button
{
    width: auto;
    height: 50px;
    border-radius: 10px;
    font-family: "MinecraftRegular", sans-serif;
    font-size: 1.1em;

    background-color: #b9b9b9;
}