:root {
    /* nappali mód
--text: #0c1527;
--background: #f3f6fb;
--primary-button: #223e72;
--secondary-background: #ffffff;
--secondary-button: #1c335e; */
    --text: #f7fafd;
    --background: #050c14;
    --primary-button: #826487;
    --secondary-background: #09121a;
    --secondary-button: #8f6f95;
}

@font-face {
    font-family: "FiraCode";
    src: url("../font/FiraCode-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "FiraCode";
    src: url("../font/FiraCode-Light.ttf");
    font-weight: 300;
}


body {
    background-color: var(--background);
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#box {
    background-color: var(--secondary-background);
    width: 600px;
    height: 550px;

    position: relative;

    margin: 0 70px 0 70px;

    border-style: solid;
    border-width: 20px;
    border-color: var(--background);

    box-shadow:
        150px -145px 0 -110px var(--primary-button),
        -150px 145px 0 -110px var(--primary-button),
        inset 4px 10px 1px -8px var(--secondary-button);
}

@media (max-width: 500px) {
    #box {
        box-shadow:inset 4px 10px 1px -8px var(--secondary-button);
        margin: 0 20px 0 20px;
        border: none;
        height: 650px;
    }
}
@media (max-width: 400px) {
    #box {
        box-shadow:inset 4px 10px 1px -8px var(--secondary-button);
        margin: 0;
        border: none;
        height: 650px;
    }
}

.content-box {
    padding: 20px;
    padding-top: 0px;
}

.content-box table {
    margin-bottom: 5px;
}

#title-text {
    font-family: "FiraCode";
    color: var(--text);
    margin: 20px;
    --border: 3px dotted var(--secondary-button);
    padding-bottom: 10px;
    position: relative;
}

#title-text,
#title-text::after {
    border-bottom: var(--border);
}

#title-text::after {
    position: absolute;
    content: "";
    bottom: 2px;
    display: block;
    width: 100%
}

.content-title {
    font-family: "FiraCode";
    color: var(--text);
    margin-top: 0;
    margin-bottom: 5px;
}

.content {
    margin: 0;
    font-family: "FiraCode";
    color: var(--text) !important;
}

a {
    color: var(--text) !important;
}

a:hover {
    color: var(--secondary-button) !important;
}

table {
    border-spacing: 0px !important;
}

.content i {
    font-size: xx-large;
}

.content a {
    margin: 10px;
}

#content-links {
    margin-top: 15px;
}

#content-hitcounter {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: end;
    padding: 0;
    padding-bottom: 20px;
}

#content-hitcounter .content {
    margin-right: 20px;
}