@import "./animations.css";
@import "./variables.css";
@import "./common.css";

@layer main {
    .content {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translate(0%, -50%);
        margin: 0px;
        padding: 20px 50px;
        text-align: center;
    }

    .content a.logo {
        display: block;
        background: var(--main_logo175) no-repeat center center;
        left: 0;
        right: 0;
        height: 175px;
    }

    .content section {
        display: inline-block;
        margin: 0px 0px 0px 0px;
        padding: 8px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 30px;
    }

    .content section > h1 {
        font-family: var(--font_stylized);
        font-size: 22pt;
        text-align: center;
        text-transform: uppercase;
        color: var(--laser_blue);
    }

    footer {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px 50px;
        background-color: rgba(0, 0, 0, 0.9);
        text-shadow: none;
        font-size: 10pt;
        color: var(--laser_gray);
    }

    footer div.footer_content {
        text-align: center;
    }

    footer div.contact_links {
        display: inline-block;
        overflow: hidden;
        vertical-align: middle;
    }

    footer div.contact_links a {
        display: block;
        float: left;
    }

    footer div.contact_links a img.badge {
        display: block;
        padding: 10px;
        margin: 0px;
        width: 30px;
        height: 30px;
    }

    footer div.contact_links a:hover img.badge {
        padding: 1px;
        margin: 0px;
        width: 48px;
        height: 48px;
    }

    footer div.copyrights {
        display: inline-block;
        float: none;
    }

    footer a.badge {
        /* display: inline-block; */
        background: var(--main_badge_grey) center center no-repeat;
        background-size: 40px;
        width: 40px;
        height: 40px;
        float: right;
    }

    footer hr {
        display: block;
        width: 100%;
        height: 1px;
        border: 0px;
        background-color: var(--laser_gray);
        color: var(--laser_gray);
    }

    footer hr.short {
        width: 10%;
    }

    @media screen and (max-width: 1280px) {
    }
    
    @media screen and (max-width: 946px) {
        .spacer_block0 {
            height: calc(100vh - (110px + 350px + 220px));
        }

        .content {
            display: block;
            position: unset;
            transform: translate(0, 0);
            padding: 0px 5px;
        }

        .content a.logo {
            display: block;
            background: var(--main_logo110) no-repeat center center;
            left: 0;
            right: 0;
            height: 110px;
        }
    
        .content section {
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 10pt;
        }
    
        footer {
            display: block;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            height: 220px;
            padding: 10px 10px;
            box-shadow: 0 50vh 0 50vh rgba(0, 0, 0, 0.9);
        }
    
        footer a.badge {
            display: block;
            margin-top: 10px;
            float: none;
        }
    }
}