@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-color: 14 67 137;
    --main-color-fore: 255 255 255;
}

body
{
    font-family: "Poppins", sans-serif;
    margin: 0px;
    padding: 0px;
    background: rgb(var(--main-color));
    color: rgb(var(--main-color-fore));
    cursor: default;
}


#background
{
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .5s, transform 1s;
    transform: scale(1,1);
}

    .zonehover #background
    {
        opacity: 1;
        transform: scale(1.2,1.2);
        transition: opacity .5s, transform 16s;
    }

#foreground
{
    position: relative;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    height: 100vh;
}


.container
{
    width: 100%;
    max-width: 1250px;
    margin: 0px auto;
    padding: 10px;
    box-sizing: border-box;
}

a
{
    color: inherit;
}


header
{
    box-sizing: border-box;
}

#main_content
{
    flex-grow: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("./cow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 50vh;
}

#logo
{
    display: block;
    text-align: center;
    padding-top: 20px;
}

#logo img
{
    height: 100px;
    width: auto;
    max-width: 100%;
    background-color: white;
    padding: 20px;
}


#intro
{
}


#introtext
{
    font-weight: light;
    text-align: center;
    font-size: 40px;
}


#zonename
{
    display: block;
    font-weight: normal;
    opacity: 0;
    transition: opacity .5s;
    font-size: 45px;
}

    .zonehover #zonename
    {
        opacity: 1;
    }


#zones
{
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

#zones ul
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

#zones ul li
{
    width: 100%;
}

#zones ul li a
{
    padding: 40px 10px;
    width: 100%;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    font-size: 20pt;
    font-weight: bolder;
    text-decoration: none;
    transition: opacity .5s;
}

#zones ul li a img
{
    height: 250px;
    width: auto;
    max-width: 100% !important;
    object-fit: contain;
    box-sizing: border-box;
    transition: transform 1.5s;
    transform: scale(1,1);
}

#zones ul li a:hover {
    opacity: 1 !important;
}

#zones ul:has(a:hover) li a:not(:hover) {
    opacity: .25;
}

#zones ul:hover img
{
    opacity: .5;
    transform: scale(.9,.9);
}

#zones ul:hover a:hover img
{
    opacity: 1 !important;
    transition: opacity 0s, transform 1.5s;
    transform: scale(1,1) !important;
}


#credits
{
    position: fixed;
    z-index: 10000;
    bottom: 0px;
    left: 0px;
    right: 0px;
    font-size: 12px;
    text-align: right;
    padding: 2px;
    box-sizing: border-box;
}





@media (max-width: 800px)
{

    #zones ul li a
    {
        padding: 0px 15px !important;
    }


    #intro
    {
        padding: 20px 0px;
    }

}


@media (max-width: 600px)
{

    #zones ul
    {
        flex-direction: column;
    }

    #zones ul li a
    {
        padding: 30px 0px !important;
    }

    #zones ul li a img
    {
        height: auto;
        width: 75%;
        max-width: 300px !important;
    }


    #intro
    {
        padding: 20px 0px;
    }

    #introtext
    {
        font-size: 30px;
    }

    #zonename
    {
        display: none;
    }



    #social a
    {
        font-size: 1.8em;
    }

    #credits span
    {
        display: block;
        text-align: inherit;
    }

}
