/* Social icons */
@font-face {
    font-family: 'Socicon';
    src:  url('socicon.eot');
    src:  url('socicon.eot#iefix') format('embedded-opentype'),
      url('socicon.woff2') format('woff2'),
      url('socicon.ttf') format('truetype'),
      url('socicon.woff') format('woff'),
      url('socicon.svg#Socicon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="socicon-"], [class*=" socicon-"] {
    font-family: 'Socicon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }


body
{
    font-family: roboto-condensed, sans-serif;
    margin: 0px;
    padding: 0px;
    background: white;
    color: black;
    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;
}


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

a
{
    color: inherit;
}


header
{
    background-color: #CE161A;
    box-sizing: border-box;
    backdrop-filter: blur(50px);
    -moz-backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

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

#logo img
{
    height: 150px;
    width: auto;
    max-width: 100%;
}

#social
{
    padding: 15px;
}

#social ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 0px;
}

#social a
{
    font-family: "Socicon";
    font-size: 25px;
    font-weight: normal;
    display: inline-block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}


#intro
{
    padding: 40px 0px;
}


#introtext
{
    font-weight: lighter;
    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-around;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

#zones ul li
{
    width: 100%;
}

#zones ul li a
{
    padding: 40px 0px;
    width: 100%;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

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

#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;
    }

}
