/* source: detbasale\index.htm style block 1 */
body {
            margin: 0;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        /* Baggrundsstil */
        .background {
            position: relative;
            width: 100vw;
            height: 100vh;
            background-color: #f0f0f0;
        }

        /* Geometriske figurer */
        .parallelogram {
            width: 120px;
            height: 100px;
            background-color: #8A2BE2;
            transform: skew(20deg);
        }

        .trapezoid {
            width: 150px;
            border-bottom: 80px solid #FFD700;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            height: 0;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .shape:not(.circle) {
            animation: rotate 5s linear infinite;
        }

        .shape {
            position: absolute;
            opacity: 0.5;
            z-index: 1; /* Figurerne har lavere z-index, så de kommer bagved overskrift og knapper */
        }

        .circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #FF6347;
        }

        .triangle {
            width: 0;
            height: 0;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-bottom: 100px solid #4682B4;
        }

        .square {
            width: 100px;
            height: 100px;
            background-color: #32CD32;
        }

        /* Knapper */
        .button-container {
            position: relative;
            margin: 10px auto; /* Increase margin to lower the buttons */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            grid-gap: 20px;
            padding: 20px;
            z-index: 10; /* Sørger for at knapperne er over figurerne */
        }
        
        body {
            overflow-y: auto; /* Allow vertical scrolling */
        }

        .background {
            height: auto;
            min-height: 100vh;
        }


        .button {
            padding: 15px 20px;
            color: #fff;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .button.color-1 { background-color: #f44336; }
        .button.color-2 { background-color: #2196F3; }
        .button.color-3 { background-color: #4CAF50; }
        .button.color-4 { background-color: #FFEB3B; color: black; }
        .button.color-5 { background-color: #FF9800; }
        .button.color-6 { background-color: #9C27B0; }
        .button.color-7 { background-color: #009688; }

        .button.color-1:hover { background-color: #d33224; }
        .button.color-2:hover { background-color: #1976D2; }
        .button.color-3:hover { background-color: #3e8e41; }
        .button.color-4:hover { background-color: #f4dd24; color: black; }
        .button.color-5:hover { background-color: #e68900; }
        .button.color-6:hover { background-color: #7B1FA2; }
        .button.color-7:hover { background-color: #00796B; }

        .balloon-task-frame,
        .target-task-frame,
        .dart-task-frame,
        .puzzle-task-frame {
            position: relative;
            z-index: 10;
            width: min(1100px, calc(100% - 40px));
            margin: 0 auto 10px;
            padding: 18px 18px 10px;
            border: 4px solid #222;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.72);
            box-sizing: border-box;
        }

        .balloon-task-frame .button-container,
        .target-task-frame .button-container,
        .dart-task-frame .button-container,
        .puzzle-task-frame .button-container {
            padding: 10px 0;
            margin: 0 auto;
        }

        .section-heading {
            color: black;
            font-size: 26px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 8px;
        }
         .button.large {
            position: absolute;
            top: 50%;
            left: 50%;
            font-size: 20px;
            transform: translate(-50%, -50%);
            align-items: center;  /* Centrerer lodret */
            color: white; /* Hvid tekst */
        }
        /* Overskrift */
        .header {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            background-color: lightgreen;
            color: black;
            text-align: center;
            padding: 20px;
            font-size: 24px;
            z-index: 1000; /* Make sure the header stays above everything */
        }
        .blue { background-color: #2196F3; }




