body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    background-image: url('images/bilde.png');
    background-size: cover;        /* Fyller hele skjermen */
    background-position: center;   /* Sentrerer bildet */
    background-repeat: no-repeat;  /* Hindrer repetisjon */
    background-attachment: fixed; /* (valgfritt) gir "parallax"-effekt */

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.norway-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 30px 60px;
    font-size: 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    margin-top: 20px;

    background: linear-gradient(
        to right,
        #ba0c2f 0%,
        #ba0c2f 35%,
        white 35%,
        white 40%,
        #00205b 40%,
        #00205b 60%,
        white 60%,
        white 65%,
        #ba0c2f 65%,
        #ba0c2f 100%
    );

    transition: transform 0.2s, box-shadow 0.2s;

    /* Puls-effekt */
    animation: pulse 1.5s infinite;
}

/* Badge */
.label {
    background: rgba(255,255,255,0.9);
    color: black;
    padding: 10px 20px;
    border-radius: 10px;

    text-shadow:
        -1px -1px 0 white,
         1px -1px 0 white,
        -1px  1px 0 white,
         1px  1px 0 white;
}

/* Ikon animasjon */
.icon {
    display: inline-block;
    animation: micBounce 1s infinite;
}

/* Hover */
.norway-button:hover {
    transform: scale(1.08);
}

/* 🔴 Puls */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 25px 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* 🎙️ Ikon bounce */
@keyframes micBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}