.mobile {
    display: none;
}

.title {
    display: flex;
    justify-content: center;

    margin: var(--large-gap);
}

.title svg {
    height: calc(var(--huge-text) * 2.5);
}

.primary {
    width: var(--primary-width);

    margin-right: auto;
    margin-left: auto;

    display: flex;
    gap: var(--large-gap);
    
}

.primary .main {
    width: 70%!important;
}

nav {
    display: flex;
    flex-direction: column;
}

.box {
    border-radius: var(--normal-radius);
    padding: var(--normal-gap);

    background-color: var(--box-color);
    border: 2px solid var(--border-color);

    margin-bottom: var(--normal-gap);
}

.box .header {
    font-family: var(--header-font);
    color: var(--header-color);
}

.primary .main .header {
    font-size: var(--large-text);
}

.primary .side .header {
    font-size: var(--normal-text);
    text-align: center;
}

.buttons {
    display: flex;

    justify-content: space-between;
    flex-wrap: wrap;

    gap: var(--small-gap);
    margin: 5px;
}

.bottons img {
    height: 31px;
    width: 88px;
}

.fake {
    text-decoration: line-through;
}

@media only screen and (max-width: 800px) {
    .title {
        margin-bottom: 0;
    }

    .primary {
        flex-direction: column;
        gap: 0;
    }

    .primary > div {
        width: 100% !important;
    }

    .sitemap {
        display: none;
    }

    .mobile nav {
        justify-content: space-between;
        align-items: center;
    }

    .mobile {
        display: block;

        width: var(--primary-width);

        margin-right: auto;
        margin-left: auto;
    }

    #mobile_navigator {
        display: none;
    }

    .navicon {
        color: var(--text-color);
        float: right;
    }

    .mobile .box .header {
        display: inline-block;
        font-size: var(--normal-text);
    }
}

.footer {
    width: var(--primary-width);

    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.info {
    width: var(--primary-width);

    margin-right: auto;
    margin-left: auto;
}

.marquee {
    font-family: var(--monospace-font);

    background-color: var(--box-color);
    border-radius: var(--small-radius);

    margin-bottom: var(--normal-gap);

    overflow-x: hidden;
}

.marquee span {
    padding: var(--normal-gap);

    display: inline-block;
    width: max-content;

    padding-left: 100%;

    /* show the marquee just outside the paragraph */
    will-change: transform;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee span {
      animation-iteration-count: 1;
      animation-duration: 0.01; 

      padding-left: 0;
      width: auto;
    }
}