/* Grundlæggende layout */
html, body {
    min-height: 100%;
    margin: 0;
}

body {
    background-image: url("background.png");
    background-size: cover;                                  /* Fylder altid hele skærmen */
    background-position: center;                             /* Centrerer billedet */
    background-repeat: no-repeat;
    background-color: #fff;                                  /* fallback-farve */
    font-family: "Courier New", monospace;
    color: #333;
    padding: 2rem;
}


.container {                                                 /* Container */
    max-width: 800px;
    margin: auto;
}

img.main-img {
    max-width: 50%;
    height: auto;
    border: 0;
    margin: 1rem auto;
    display: block;
}

h1 {                                                         /* Tekst og overskrifter */
    font-size: 1rem;
    margin-bottom: .5rem;
    text-align: right;
}

.a {
    font-size: 0.6rem;
    line-height: 1.1;
    text-align: right;
    margin-bottom: 1rem;
}

.b {
    font-size: 0.6rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
}

@media (orientation: portrait) {                             /* Ret baggrundens adfærd efter retning */
    body {
        background-size: cover;
        background-position: center top;
    }
}

@media (orientation: landscape) {
    body {
        background-size: cover;
        background-position: center center;
    }
}
