body, html {
    background: #000 !important;
}

.titleContainer {
    height: 40px;
    width: calc(100% - 26px) !important;
    padding: 4px 13px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    z-index: 2;
}


.titleContainer h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
    text-transform: lowercase;
    line-height: 1;
    -webkit-user-select: none;
    user-select: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.titleContainer span {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    padding-left: 10px;
    -webkit-user-select: none;
    user-select: none;
    display: inline-block;
}
.titleContainer span::before {
    content: "// ";
}

.titleContainer span a {
    text-decoration: none;
    color: inherit;
}
.titleContainer span a:hover {
    text-decoration: underline;
}

.titleContainer .title {
    display: flex;
    align-items: center;
}


.titleContainer #back {
    margin-left: auto;
    padding-left: 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    color: #fff;
    -webkit-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
}
.titleContainer #back:after {
  content: 'back';
}
.titleContainer #back:hover:after {
  content: 'vissza';
}

.gallery {
    max-width: 1000px;
    padding: 48px 0 0 0;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5em;
}

.gallery figure {
    padding: 0;
    margin: 0;
    order: 2;
}

.gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#empty {
    width: 100%;
}

#empty p {
    margin: 20% 0;
    padding: 0;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    color: #fff;
}


#iframe {
    padding: 56.25% 0 0 0;
    position: relative;
    z-index: 1;
    order: 0;
}

#iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#content {
    padding: 13px;
    padding-top: 0;
    order: 1;
}

#content section,
#content p,
#content section a {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    -webkit-user-select: none;
    user-select: none;
    display: inline-block;
    color: #fff;
    margin: 0;
    padding: 0;
}

#content section {
    display: block;
}

#content section a {
    font-weight: bold;
    text-decoration: none;
}
#content section a:hover {
    color: yellow;
}


@media (max-width: 570px) {
    .titleContainer {
        height: auto;
        padding: 10px 13px;
    }

    .titleContainer h2 {
        font-size: 26px;
    }

    .titleContainer .title {
        flex-direction: column;
        align-items: flex-start;
    }

    .titleContainer span {
        padding-left: 0;
    }
    .titleContainer span::before {
        content: "";
    }

    .gallery {
        padding: 66px 0 0 0;
    }
}