@font-face {
    font-family: Comic Sans MS;
    src: url("/fonts/comic-sans-ms/COMIC.TTF")
}

@media screen and (min-width: 768px) {
    div.unviversal-grid-container {
    padding: 2em;
    display: grid;
    grid-template-areas:
    "header  header " 
    "decor   decor  "
    "credits credits";
    grid-template-columns: auto auto;
    }

    div.header > img {
        width: 30%;
        max-width: 40em;
    }

    div.decor > img {
        max-width: 35em;
    }
}


body {
    margin: 0;
    background-color: #26172e;
    font-family: Comic Sans MS;
}

.universal-grid-container{
    margin-top: 2em;
    margin-left: 2em;
    margin-right: 2em;

    div {
        text-align: center;
        font-size: 1.2em;
    }
}

div.header {
    grid-area: header;
    height: auto;
    border: 0.1em solid #b89de1;
    border-bottom: none;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;

    img {
        width: 90%;
        padding-top: 1em;
        image-rendering: pixelated;
    }
}

div.decor {
    grid-area: decor;
    border-bottom: 0.1em solid #b89de1;
    border-bottom-width: 0.1em;
    border-bottom-style: solid;
    border-left: 0.1em solid #b89de1;
    border-right: 0.1em solid #b89de1;

    img {
        width: 90%;
        image-rendering: pixelated;
    }
}

.credits {
    grid-area: credits;
    position: relative;
    height: 100%;
    margin-bottom: 0;
    border: 0.1em solid #b89de1;
    border-top-width: 0.1em;
    border-top-style: solid;
    border-top-color: rgb(184, 157, 225);
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    padding: 2em;
    padding-bottom: 6em;
    
    a { color: #c983cb;}
    a:visited {
        color: #7a538b;
    }
}