* {
            box-sizing: border-box;
        }

        body {
            overflow: auto;
            color: #000;
            background: linear-gradient(0deg, #ffebf2 0%, #f5f5f5 33%);
            font-family: "Inconsolata", monospace;
            font-weight: 400;
            font-size: 17px;
            font-style: normal;
        }

        .jacquard-12-regular {
            font-family: "Jacquard 12", system-ui;
            font-weight: 400;
            font-style: normal;
        }

        .inconsolata-text {
            font-family: "Inconsolata", monospace;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-variation-settings:
                "wdth" 100;
        }

        h3 {
            font-size: 22px;
        }

        .container {
            display: flex;
            background-color: #00000000;
            max-width: 800px;
            max-height: max-content;
            margin: 50px auto;
            border: 2px #000;
        }
        .windows {
            overflow: hidden;
            padding: 0px;
            flex-grow: 1;
        }
        .window {
            max-width: 800px;
            background-color: #fff;
            color: #000;
            margin: 0px 0px;
            padding: 5px 5px;
            border: 3px #000;
            border-style: solid;
            border-radius: 3px;
            margin-bottom: 20px;
        }

        .window-header {
            background: linear-gradient(270deg, #e1c1ce, #020000 100%);
            color: #f5f5f5;
            border: 2px #000000;
            margin-top: 0px;
            margin-left: 0px;
            padding: 8px;
            border-style: dashed;
            display: flex;
            cursor: move;
            justify-content: space-between;
            font-family: "Jacquard 12", system-ui;
            font-size: 25px;
            border-radius: 3px;
        }

        .window-controls {
            margin-right: 3px;
            border: 2px #000;
            border-style: solid;
            background-color: #f5f5f5;
            padding: 0 5px;
            cursor: pointer;
            color: #000;
            border-radius: 3px;
        }

        .window-body {
            border: 2px #000;
            border-style: dashed;
            padding: 8px;
            margin-top: 5px;
            border-radius: 3px;
        }

        hr {
            width: 600px;
            color: #000000;
            height: 4px;

        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        /* Track(FROM W3SCHOOLS) */
        ::-webkit-scrollbar-track {
            background: #ffc4d0;
        }

        /* Handle */
        ::-webkit-scrollbar-thumb {
            background: #3a2c37;
        }

        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #8c676f;
        }

        .button {
            display: flex;
            justify-content: center;
        }

        .link {
            padding: 8px;
            border: 3px solid #ffc4d0;
            border-radius: 8px;
            background-color: #ffebf2;
            text-decoration: none;
            color: #3a3036;
            font-size: 25px;
            margin-bottom: 5px;
        }

        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .char img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border: 1px solid #aaa;
            background: #ddd;
        }

        .char {
            text-align: center;
            text-decoration: none;
            color: #201b1c;
        }

        .char span {
            display: block;
            margin-top: 6px;
            font-size: 0.95rem;
        }

        .char:hover img {
            outline: 2px solid #644851;
        }


        .back {
            padding: 5px;
            border: 3px dashed #262125;
            border-radius: 5px;
            background-color: #ffebf2;
            text-decoration: none;
            color: #3a3036;
            font-size: 20px;
            margin-bottom: 10px;
        }