@font-face {
    font-family: 'freckle';
    src: url('fonts/FreckleFace-Regular.ttf') format('truetype');
}

:root {
    --bg-color: #131313;
    --text-color: #fff;
    --block-color: #131313;
    --secblock-color: #1B1B1B;
    --header-color: #2f0e83;
    --logo-color: #ffffff;
}

.dark-theme {
    --bg-color: #c2aaff;
    --text-color: #000000;
    --block-color: #c2aaff;
    --secblock-color: #c2aaff;
    --header-color: #551aeb;
    --logo-color: #000000;
}

body {
    background-color: var(--bg-color);
    font-family: 'freckle';
    margin: 0;
    display: flex;
    width: calc(100vw - var(--scrollbar-width, 0px));
    height: 100%;
    background-image: url('graphics/bgimg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
    flex-direction: column;
}

header {
    background-color: var(--header-color);
    height: 50px;
    width: 100%;
    margin: 0;
    font-family: 'freckle';
    color: var(--logo-color);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.themeButton {
    background-color: var(--header-color);
    cursor: pointer;
}

.naming {
    margin: 0 0 0 15px;
    font-size: 32px;
    user-select: none;
}

.desklinks {
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 25px;
    gap: 15px;
}

.desklink {
    text-decoration: none;
    color: var(--logo-color);
}

.desklink:hover {
    color: #000000;
}

.text {
    margin: 0;
    font-size: 25px;
}

.fstblock {
    height: 840px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    color: var(--text-color);
}

.button {
    background-color: var(--header-color);
    color: var(--logo-color);
    font-size: 32px;
    text-decoration: none;
    height: 50px;
    max-width: 528px;
    min-width: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

.button:hover {
    background-color: #4d06ff;
    color: #ffffff;
}

* {
    scrollbar-color: #551aeb #131313;
    scrollbar-width: thin;
}

.container {
    height: 559px;
    max-width: 528px;
    width: 100%;
    min-width: 100px;
    background-color: var(--block-color);
    border-radius: 10px;
    border: 3px #1B1B1B solid;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    flex-direction: column;
    gap: 25px;
}

.biglogo {
    max-width: 125px;
    min-height: 125px;
    pointer-events: none;
}

.secblock {
    height: 400px;
    background-color: var(--secblock-color);
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img {
    width: 350px;
    height: 350px;
    background-color: var(--header-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

.trdblock {
    height: 50px;
    width: 100%;
    color: var(--text-color);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.lasttext {
    font-size: 20px;
    margin: 0;
    user-select: none;
}