.kontakt-content {
    position: fixed;
    height: 100vh;
    width: 100vW;
    background: url("../img/GAME_BACKGROUND.webp") center top no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* HLAVNÍ OBSAH */
.content-container {
    position: relative;
    width: 100%;
    margin-top: var(--header);
    /* obsah začne až pod headerem */
    padding: 2rem;
    /* padding kolem obsahu */
    display: flex;
    flex: 1;
    flex-direction: column;
}

.kontakt-section {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.kontakt-wrapper {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.autor {
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 1rem 0;
}

a {
    color: white;
    text-decoration: none;
    text-decoration-color: var(--my-color-road-sign);
}

a:hover {
    text-decoration: underline;
    color: var(--my-color-road-sign);
    transition: color 0.2s ease-in-out;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

code {
    padding: 2px 6px;
}

.hint {
    font-size: 20rem;
    font-weight: bold;
    line-height: 100%;
    text-align: center;
}

h1 {
    align-content: end;
    margin: 0;
    min-height: 5rem;
    text-transform: uppercase;
}

.sub {
    color: gray;
    margin: 6px 0 0;
    min-height: 5rem;
}

.warning-message {
    opacity: .65;
    text-align: center;
    text-transform: uppercase;
}

.warning-icon {
    color: var(--my-color-road-sign);
    /* vykřičník */
    font-weight: 900;
    font-size: 20px;
}

.warning-text {
    color: var(--gray);
    /* bílý text */
}


@media (max-width: 768px) {

    .hint {
        font-size: 10rem;
        font-weight: bold;
        line-height: 100%;
    }

}