@charset "UTF-8";

/* CSS rules go below */


        body {
            font-family: "Helvetica", "Arial", sans-serif;
            color: rgb(255, 255, 255);
            background-color: rgb(0, 0, 0);
        }

        .page-wrapper {
            padding: 1rem;
            display: flex;
            flex-direction: column;
        }

        header, nav, section, footer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            align-items: center;
            margin-top: 2.5vw;
            margin-bottom: 2.5vw;
        }

        h1, h2, p {
            text-align: center;
            max-width: 30rem;
        }

        h1 {
            color: red;
        }

        h2 {
            color: green;
        }

        p {
            color: blue;
        }

        nav a {
            color: red;
            text-decoration: none;
            margin: 0.5rem;
            border: 2px solid red;
            padding: 0.5rem 1rem;
            border-radius: 1.5rem;
            transition: all 0.3s ease-in-out;
        }

        nav a:hover {
            background-color: red;
            color: white;
        }

        .extension-download a {
            font-size: 1.5rem;
            padding: 1.5rem;
            border-radius: 2rem;
            text-decoration: none;
            border: 2px solid green;
            background-color: black;
            color: green;
            transition: all 0.3s ease-in-out;
        }

        .extension-download a:hover {
            background-color: green;
            color: black;
        }

        .extension-documentation {
            width: 50vw;
        }

        .extension-reviews-block {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .extension-review {
            width: 25vw;
            padding: 1rem;
            margin: 1rem;
            border: 1px solid silver;
            box-sizing: border-box;
            background-color: rgba(0, 0, 255, 0.1);
            color: white;
        }

        video, img {
            display: block;
            width: 100%;
            height: auto;
            margin-top: 1rem;
            margin-bottom: 1rem;
            background-color: black;
            border: 2px solid green;
        }

        section.extension-installation ol {
            text-align: left;
            color: lightblue;
        }

        footer {
            border-top: 1px solid red;
            color: gray;
        }

        #toggle-overlay {
            position: fixed;
            bottom: 1rem;
            right: 1rem;
            z-index: 100000;
            padding: 10px 20px;
            font-size: 14px;
            border: 2px solid silver;
            background-color: red;
            color: white;
            border-radius: 2rem;
            cursor: pointer;
        }

        @media (max-width: 780px) {
            .extension-documentation {
                width: 90vw;
            }
            .extension-review {
                width: 90vw;
                margin-left: 0;
                margin-right: 0;
            }
        }


