body,
        html {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #f3f3f3;
        }

        section {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 50px;
            box-sizing: border-box;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        html {
            scroll-snap-type: y mandatory;
        }

        .section-1 {
            background: linear-gradient(135deg, #74ebd5, #acb6e5);
        }

        .section-2 {
            background: linear-gradient(135deg, #ff6f61, #ffcc00);
        }

        .section-3 {
            background: linear-gradient(135deg, #2193b0, #6dd5ed);
        }

        .section-4 {
            background: linear-gradient(135deg, #ff9a9e, #fecfef);
        }

        .section-5 {
            background: linear-gradient(135deg, #ff6f61, #ffcc00);
        }

        .section-6 {
            background: linear-gradient(135deg, #ff9a9e, #fecfef);
        }

        .section-7 {
            background: linear-gradient(135deg, #2193b0, #6dd5ed);
        }


        h1 {
            font-size: 50px;
            margin-bottom: 20px;
        }

        p {
            font-size: 24px;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }

        .scroll-down {
            margin-top: 30px;
            font-size: 18px;
            color: #fff;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        .scroll-down:hover {
            color: #ffcc00;
        }

        .button {
            background-color: #74ebd5;
            color: #fff;
            font-size: 28px;
            padding: 20px 40px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .button:hover {
            background-color: #ff6f61;
            transform: translateY(-5px);
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            font-size: 16px;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        footer a,
        #reportBugButton {
            color: #ffcc00;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
            font-size: 18px;
            cursor: pointer;
            background-color: transparent;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
        }

        footer a:hover,
        #reportBugButton:hover {
            background-color: #ffcc00;
            color: #333;
        }

        #tryButton {
            margin-top: 30px;
        }

        .modal {
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            width: 80%;
            max-width: 600px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        }

        .close {
            float: right;
            font-size: 24px;
            cursor: pointer;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin: 15px 0 5px;
            font-weight: bold;
        }

        textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            min-height: 80px;
            resize: none;
            box-sizing: border-box;
        }

        textarea:focus {
            outline: none;
            border-color: #74ebd5;
        }

        input[type="file"] {
            margin: 15px 0;
        }

        select {
            padding: 10px;
            margin: 15px 0;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 16px;
        }

        button[type="submit"] {
            padding: 15px;
            border-radius: 8px;
            background-color: #74ebd5;
            border: none;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button[type="submit"]:hover {
            background-color: #ff6f61;
        }