        :root {
            --bgmain: rgba(250, 248, 242, 0.94);
            --blackbutnotrlly: #171717;
            --litegray: #666;
            --line: rgba(0, 0, 0, 0.16);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            min-height: 100vh;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
            color: var(--blackbutnotrlly);
            background:
                url("https://geebsa.neocities.org/images/papertileabletexturelight.jpg")
                repeat center center fixed;
            background-color: #eee;
            line-height: 1.55;
            animation: scrollBackground 20s linear infinite;
        }

        /* scrolling background taken from youtube tutorial, sorry again to whoever this was stolen from */

         @keyframes scrollBackground {
             from {
              background-position: 0 0;
             }

             to {
              background-position: 300px 350px;
              }

            }

        .site-shell {
            width: min(1100px, calc(100% - 32px));
            margin: 28px auto 40px;
            filter: drop-shadow(0 10px 24px rgba(0,0,0,.12));
        }

        header {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }


        main {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 16px;
            margin-top: 16px;
            align-items: start;
        }

        .card {
            position: relative;
            background: var(--bgmain);
            border: 1px solid rgba(0,0,0,.15);
            box-shadow: 7px 7px 0 rgba(0,0,0,.13);
            padding: 25px;
            overflow: hidden;
        }

         .sona {
            position: relative;
            background: ;
            padding: 25px;
            overflow: hidden;
            animation: move 2s ease-in-out infinite alternate;
            transform-origin: center; 
        }

        /* i stole this keyframe thing from some other dudes webpage, sorry whoever you are.*/

        @keyframes move {
             from {
             transform: rotate(-0.3deg);
             }
             to {
            transform: rotate(0.3deg);
             }
        }


        /*i'm almost postitive there's a better way to to this. i just don't know it.*/

        .card + .card {
            margin-top: 16px;
        }

        .card + .sona {
            margin-top: 16px;
        }

        .section-title {
            font-family: "Trebuchet MS", Arial, sans-serif;
            font-size: 25px;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .about p,
        .news p,
        .faq p {
            margin-bottom: 14px;
        }

        .muted {
            color: var(--litegray);
        }

        .social-heading {
            font-family: "Trebuchet MS", Arial, sans-serif;
            font-size: 24px;
            margin-bottom: 17px;
        }

        
        .social-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .social {
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1;
            background: #e9e6de;
            border: 1px solid rgba(0,0,0,.16);
            border-radius: 10px;
            box-shadow: 6px 6px 0 rgba(0,0,0,.18);
            overflow: hidden;
            transition: transform .0s ease;
        }

        .social:hover {
            transform: translate(-2px, -2px);
        }

        .social img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }

        .gallery img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border: 1px solid rgba(0,0,0,.2);
            box-shadow: 4px 4px 0 rgba(0,0,0,.14);
            background: #ddd;
        }

        .before-pic {
            margin-top: 18px;
            background: #dedbd2;
            border: 1px solid rgba(0,0,0,.16);
            box-shadow: 5px 5px 0 rgba(0,0,0,.13);
        }

        .before-pic img {
            display: block;
            width: 100%;
            height: auto;
        }

        .faq-item {
            padding: 14px 0;
            border-bottom: 1px solid var(--line);
        }

        .faq-item:first-of-type {
            padding-top: 0;
        }

        .faq-item:last-of-type {
            border-bottom: 0;
        }

        .question {
            font-weight: bold;
        }

        .answer {
            margin-top: 3px;
        }

        .email-link {
            display: inline-block;
            margin-top: 8px;
            padding: 7px 11px;
            background: white;
            color: black;
            text-decoration: none;
            font-family: "Trebuchet MS", Arial, sans-serif;
            font-size: 13px;
            border: 1px solid rgba(0,0,0,.15);
            box-shadow: 4px 4px 0 rgba(0,0,0,.13);
            transition: transform .0s ease;
        }

        .email-link:hover {
            transform: translateY(-2px);
        }

        footer {
            margin-top: 16px;
            padding: 20px;
            background: var(--bgmain);
            color: black;
            text-align: center;
            font-family: "Times New Roman", Times, serif;
            font-size: 15px;
            box-shadow: 7px 7px 0 rgba(0,0,0,.13);
            border: 1px solid rgba(0,0,0,.15);
        }

        footer .update {
            margin-top: 4px;
            opacity: .7;
            font-size: 13px;
        }

        @media (max-width: 760px) {
            body {
                animation: none;
                background-attachment: scroll;
            }

            header {
                min-height: 190px;
                padding: 30px 15px;
            }

            main {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .card {
                padding: 20px;
            }

            .social-list {
                grid-template-columns: repeat(6, 1fr);
            }

            .gallery img {
                width: calc(50% - 6px);
                height: auto;
                aspect-ratio: 1;
            }
        }

        @media (max-width: 430px) {
            .social-list {
                grid-template-columns: repeat(3, 1fr);
            }

            .hero h1 {
                letter-spacing: -2px;
            }

            .card {
                box-shadow: 4px 4px 0 rgba(0,0,0,.13);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            body {
                animation: none;
            }

            * {
                transition: none !important;
            }
        }