html, body {
    width: 100%;
    height: 100%;
    color: #202020;
    background: #0a3622;
}

a, a:link, a:visited {
    color: #0000ff;
    text-decoration: underline;
}

a:hover {
    color: #000080;
}

body {
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

main {
    padding: 2rem 1rem;
    border: .5rem solid orange;
    border-radius: 1rem;
    background: rgb(253,121,29);
    background: linear-gradient(330deg, rgba(253,121,29,1) 0%, rgba(252,178,69,1) 100%);
    box-shadow: 0 0 1rem #00000040, 0 0 3rem #00000040;
    text-shadow: 0 0 .25rem #ffffffff;

    z-index: 10020;

    > * {
        padding: 0 1rem;
    }

    article {
        h1 {
            float: right;
            margin: 0;
        }
        h1 img {
            width: 10rem;
            margin: 0 0 .5rem 1rem;
        }
        a {
            color: #51a8fc;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }

        section {
            #ctc {
                letter-spacing: .1rem;
            }
            img {
                height: 3rem;
            }
        }
    }

    footer {
        img {
            width: 10rem;
            margin: .5rem 0;
        }
    }
}

#bg-credits {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    padding: .25rem;
    line-height: .7rem;
    font-size: .7rem;
    text-align: right;
    color: #00000080;
    background: #ffffff40;
    border-radius: .5rem;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 .5rem #00000080;

    z-index: 10010;

    a {
        color: #00000080;
        text-decoration: none;
    }
    a:hover {
        color: #000000;
    }
}

/** Responsive */

main {
    width: 75%;
    height: 75%;
}

@media (max-width: 1200px) {
    main {
        width: 85%;
        height: 85%;

        font-size: .95rem;
        line-height: 1.35rem;

        footer {
            img {
                width: 9rem;
            }
        }
    }
}

@media (max-width: 768px) {
    main {
        width: 95%;
        height: 95%;

        font-size: .9rem;
        line-height: 1.25rem;

        footer {
            img {
                width: 8rem;
            }
        }
    }

    #bg-credits {
        bottom: 0;
        right: 0;
        padding: .05rem .2rem;
        line-height: .5rem;
        font-size: .5rem;
        border-radius: 0;
        backdrop-filter: blur(2px);
        box-shadow: none;
    }
}
