﻿html {
    height: 100%
}

body {
    margin: 0px;
    background-image: url("/branding/en/shared/eventerspace1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    line-height: 27px;
}

.default-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "branding-box-container""render-box-container""bottom-container""footer-container";
}

.branding-box-container {
    grid-area: branding-box-container;
}

.render-box-container {
    grid-area: render-box-container;
}

.bottom-container {
    grid-area: bottom-container;
}

.footer-container {
    grid-area: footer-container;
}

.branding-box {
    margin-top: 12px;
    margin-right: 12px;
    margin-bottom: 12px;
    margin-left: 12px;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 28px;
    border-radius: 10px;
}

.render-box {
    margin-top: 10px;
    margin-right: 12px;
    margin-bottom: 12px;
    margin-left: 12px;
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 28px;
    border-radius: 10px;
    max-height: 800px;
    overflow: auto;
}

.bottom {
    background-color: rgb(43, 42, 51);
    color: white;
}

.footer {
    background-color: rgb(43, 42, 51);
    color: white;
}

ul {
    list-style: none;
    padding-inline-start: 20px;
}

    ul > li {
        display: inline-block;
    }

a.footer-link {
    color: white;
    margin-right:24px;
}

@media screen and (min-width: 1024px) {

    body {
        height: 100%;
    }

    .default-container {
        height: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto auto;
        gap: 0px 0px;
        grid-auto-flow: row;
        grid-template-areas: "branding-box-container render-box-container""bottom-container bottom-container""footer-container footer-container";
    }

    .branding-box-container {
        grid-area: branding-box-container;
        display: flex;
        justify-self: end;
        justify-content: center;
        align-items: flex-start;
    }

    .render-box-container {
        grid-area: render-box-container;
        display: flex;
        justify-self: start;
        justify-content: center;
        align-items: flex-start;
    }

    .bottom-container {
        grid-area: bottom-container;
    }

    .footer-container {
        grid-area: footer-container;
    }

    .branding-box {
        margin-top: 24px;
        margin-right: 44px;
        margin-bottom: 24px;
        margin-left: 24px;
        max-width: 500px;
        margin-top: 24px;
    }

    .render-box {
        margin-top: 24px;
        margin-right: 24px;
        margin-bottom: 24px;
        margin-left: 44px;
        max-width: 500px;
        min-width: 450px;
    }

    .bottom {
        padding: 24px;
    }

    .footer {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}
