/*
Source - https://stackoverflow.com/q
Posted by snazzybouche
Retrieved 2025-11-15, License - CC BY-SA 4.0
*/
.grad1 {
  /*height: 200px;*/
  background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet, red) !important;
  color: white;
}

body {
    margin: 0.5em;
    background: lightgrey;
}

#graphic-passion {
    width: 10em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee > * {
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-name: marquee-scroll;
    animation-timing-function: linear;
    -webkit-text-stroke: calc(1em/64) black;
    padding-right: 1em;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

#hovednav {
    font-size: 1.25em;
    display: flex;
    flex-direction: row;
    gap: 1em;
    background: red;
    width: fit-content;
    height: fit-content;
    padding: calc(1em/4);
    overflow: hidden;
    background: lightgray;
}



.gammalboks {
    --border-thickness: 0.4rem;
    background: lightgray;
    border-right: white solid var(--border-thickness);
    border-top: white solid var(--border-thickness);
    border-left: grey solid var(--border-thickness);
    border-bottom: grey solid var(--border-thickness);
    padding: var(--border-thickness);
}
.gammalboks2 {
    --border-thickness: 0.4rem;
    background: lightgray;
    border-right: grey solid var(--border-thickness);
    border-top: grey solid var(--border-thickness);
    border-left: white solid var(--border-thickness);
    border-bottom: white solid var(--border-thickness);
    padding: var(--border-thickness);
}

h1, h2, h3, h4, h5 {
    margin: 0;
}
