@media (min-width: 1080px) {
    .content>div {
        font-size: 2vw;
    }

    footer>* {
        font-size: 2vw;
    }
}

@font-face {
    font-family: 'H1';
    src: url('H1.woff2') format('woff2'),
        url('H1.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'H2';
    src: url('H2.woff2') format('woff2'),
        url('H2.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgb(207, 205, 185);
}

body {
    background-color: black;
    font-family: sans-serif;
    color: white;
    margin: 0;
    visibility: hidden;
}

header {
    position: relative;
    text-align: center;
    margin: 0 0 1em 0;
}

header>.present {
    background-color: rgb(0, 0, 0);
}

header>.present>img {
    max-width: 100%;
    border: 0.1em solid;
}

header>div {
    width: 100%;
}

.sju {
    font-family: 'H1', sans-serif;
    font-size: 18vw;
}

.h {
    font-family: 'H1', sans-serif;
    font-size: 16vw;
    vertical-align: top;
}

.hrekond {
    font-family: 'H1', sans-serif;
    font-size: 16vw;
    vertical-align: top;
}

.flygblad {
    position: absolute;
    text-align: left;
    top: 8vw;
    transform: rotate(-25deg);
}

.flygblad>img {
    max-width: 50vw;
}

.flygblad2 {
    padding: 3em 0 3em 0;
}

.flygblad2>img {
    max-width: 80%;
}

.rekond {
    font-family: 'H2', sans-serif;
    font-style: italic;
    font-size: 12vw;
    vertical-align: text-bottom;
    color: red;
}

.content {
    display: grid;
    grid-template-columns: auto auto;
    margin-left: auto;
    margin-right: auto;
    align-content: end;
    font-size: 3vw;
    background-color: rgb(207, 205, 185);
    color: rgb(0, 0, 0);
    padding: 1em 1em;
}

.content>div {
    vertical-align: text-bottom;
    display: flex;
    align-items: flex-end;
    padding: 0.5em 1em;
}

footer {
    display: grid;
    grid-template-columns: auto auto auto auto;
    font-size: 3vw;
    align-content: end;
    padding: 0.5em 1em;
}

footer>div:nth-of-type(1) {
    vertical-align: text-bottom;
    display: flex;
    align-items: flex-end;
    grid-area: 1 / 2;
}

footer>div:nth-of-type(2) {
    vertical-align: text-bottom;
    display: flex;
    align-items: flex-end;
    grid-area: 1 / 3;
}

footer>div:nth-of-type(3) {
    font-weight: bold;
    text-align: center;
    grid-area: 2 / span 4;
}

.gallery {
    display: inline-flex;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 2em;
    padding: 2em;
    align-items: center;
    width: 94%;
    overflow-x: scroll;
}

.gallery-container {
    border: 0.1em solid;
}

.gallery-container>div {
    position: relative;
}

.gallery-img-text {
    position: absolute;
    top: 8px;
    left: 16px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.gallery-modal {
    display: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 200%;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 80%;
}

.gallery-modal>div {
    position: relative;
    margin: auto;
    width: 80%;
}

.gallery-modal>div>img {
    align-content: center;
    max-width: 100%;
}