body {
    display: flex;
    margin: 0;
    background: url("/stil/img/hkrw-bg.jpg") no-repeat center center fixed;
    flex-direction: column;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    color: #333333;
}

a {
    color: inherit;
    text-decoration: none;

    &:active, &:visited {
        color: inherit;
    }
}

svg.defs {
    position: absolute;
    width: 0;
    height: 0;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, rgba(184,41,33,1) 0%, rgba(184,41,33,1) 60%, rgba(184,41,33,0) 100%);

    .logo {
        width: 90%;
    }

    a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.funktioner {
    display: flex;
    margin-top: -40px;
    margin-bottom: 36px;
    justify-content: center;
    gap: 36px;

    .button-wrap {
        position: relative;
        display: flex;
        flex-direction: column;

        &.current {
            button {
                color: #f8bdbd;
                border-color: #f8bdbd;
            }

            &:after {
                content: '';
                background-image: url("/stil/img/upp_pil.svg");
                background-size: contain;
                background-repeat: no-repeat;
                width: 24px;
                height: 24px;
                position: absolute;
                top: 60px;
                left: 50%;
                transform: translateX(-50%);
            }
        }
    }

    button {
        position: relative;
        background: transparent;
        border: 3px solid white;
        border-radius: 5px;
        opacity: 1;
        transition: opacity 0.3s ease;
        font-size: 18px;
        letter-spacing: 0.1rem;
        color: white;
        padding: 12px 22px;
        backdrop-filter: blur(3px);
    }
}

footer {
    margin: auto 0 0;
    bottom: 0;
    width: 100%;

    button {

    }
}

.button-pane {
    display: flex;
    justify-content: center;
    margin-top: 22px;

    button {
        background-color: #b82921;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;

        &:hover {
            background-color: #a1221a;
        }
    }
}
