:root {
    --primary-color: #ffea3e;
    --secondary-color: #333;
    --background-color: #1f2532;
}

html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    background: #1f2532 radial-gradient(circle,rgba(255, 234, 62, 0.15) 0%, rgba(255, 234, 62, 0) 100%);
    background-attachment: fixed;
    color: #ffea3e;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    /* gap: 4rem; */
    font-family: "Jost", sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    padding-bottom: 1rem;
}

h1 {
    color: #ffea3e;
    font-size: clamp(2rem, 1.4444rem + 1.7778vw, 3rem);
    cursor: help;
}

/* GENERIERT nur zu Testzwecken */

.main-container {
    display: flex;
    flex: 1;
    position: relative;
    z-index: 1;
}


#content {
    flex: 1;
    padding: 2rem;
    padding-top: 5rem;
}

#content > .not-found {
    color: #ffea3e;
    font-size: 1.5rem;
    text-align: center;
}

.marquee-container {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 25px;
}

.marquee-text {
    display: inline-flex;
    animation: scroll-left 8s linear infinite;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.text-content {
    display: inline-flex;
}

.text-item {
    margin-right: 50px;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* HIER SIND DIE TEXT STYLES FÜR DAS STOCK GADGET */

.footer-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    flex: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 234, 62, 0.2);
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 2;
}

.stock-gadget-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #ffea3e;
}

.stock-display {
    display: inline-block;
    opacity: 1;
}
