body {
            margin: 0;
            min-height: 100dvh;
            
            background-image: radial-gradient( circle farthest-corner at 3.2% 49.6%,  rgba(80,12,139,0.87) 0%, rgba(74, 5, 79, 0.72) 83.6% );

            font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }


        #searcharea {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            transition: all 0.5s ease;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px 10px 0 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-bottom: 0;
            padding: 10px;
            text-align: center;
            width: 70%;
            max-width: 500px;
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        /* #searcharea::after{
            opacity: 0.9;
            content: '<a href="tuncay.dev">Created by Tuncay KAPTAN</a>';
            position: absolute;
            right: 0;
            left: -1px;
            background: #423e3e;
            background: linear-gradient(133deg, rgba(66, 62, 62, 1) 1%, rgba(37, 35, 38, 1) 97%);
            border-radius: 0px 0px 10px 10px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            width: calc(100% + 2px);
            padding: 7px 10px;
            box-sizing: border-box;
            top: 70px;
            color: rgb(200, 200, 200);
            font-size: 9px;
            text-align: left;
        } */

        #credit {
            display: block;
            position: absolute;
            top: 69px; /* veya istediğin mesafe */
            left: calc(50%);
            transform: translateX(-50%);
            width: calc(100% + 3px);
            background: linear-gradient(133deg, rgba(66, 62, 62, 1) 1%, rgba(37, 35, 38, 1) 97%);
            padding: 7px 10px;
            color: rgb(200, 200, 200);
            font-size: 11px;
            text-align: left;
            border-radius: 0 0 10px 10px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-sizing: border-box;
            text-decoration: none;
            opacity: 0.9;
        }

        #searcharea.top {
            top: 100px;
            transform: translateX(-50%) scale(0.9);
        }


        

        #search {
            width: 100%;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            font-weight: 400;
            padding: 10px 10px 11px 10px;
            outline: none;

        }

        #search::placeholder{
            color: rgba(255, 255, 255, 0.37);
        }

        #find, #find > img {
            padding: 1px;
            width: 37px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            user-select: none;
        }

        #find:hover {
            transform: scale(1.05);
        }

        #result {
            margin-left: auto;
            margin-right: auto;
            color: white;
            font-size: 18px;
            max-width: 600px;
            width: 90%;
            min-height: 100px;
            text-align: left;
            line-height: 1.6;
            white-space: pre-wrap;
            margin-top: 200px;
            transition: all 0.5s ease;
        }

        .fade-in {
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            animation: letterIn 0.5s forwards;
        }

        @keyframes letterIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }