:root{
            --transition: 0.3s ease-in-out;
            --p2: 36px/48px var(--ff);
            --ff: "Montserrat", sans-serif;
            --colorp: #f9f9f9;
            --colorp2: #fff;
            --colora: #37ffe4;
            --colora2: #4bec93;
            --colorbody: #1e1e1e;
            --colors: #333;
            --h1: bold 54px/60px var(--ff);
            --h2: bold 36px/48px var(--ff);
            --h3: bold 24px/36px var(--ff);
            --links: 18px/18px var(--ff);
            --p: 18px/30px var(--ff);
            --p1: 24px/30px var(--ff);
            --subtext: 12px/20px var(--ff);
            --transition: 0.3s ease-in-out;
            
        }
        body, html {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
            color: white;
            text-align: center;
        }
        .background-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .bgaudio {
            display: none;
            pointer-events: none;
            width: 0px;
            height: 0px;
        }
        .entryoverlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        .entryoverlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        .entrybutton {
            padding: 1rem 2rem;
            background: #00A3A3;
            color: #00ffff;
            border-radius: 12px;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 0 10px #00ffff, 0 0 30px #00ffff;
            transition: 0.3s;
        }
        .entrybutton:hover {
            background: #00ffff;
            color: black;
            transform: scale(1.05);
            box-shadow: 0 0 10px #00ffff, 0 0 30px #00ffff;
        }
        .titleandphoto {
            padding-top: 100px;
            text-align: center;
        }
        .catphoto {
            display: block;
            position: relative;
            border-radius: 50%;
            margin: 0 auto 20px auto;
            max-width: 200px;
            height: auto;
        }
        .content {
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .button, .discord-button, .translations, .join-discord {
            display: inline-block;
            align-items: center;
            padding: 15px 25px;
            font-size: 18px;
            color: #fff;
            border: 2px groove;
            border-radius: 5px;
            text-decoration: none;
            cursor: pointer;
            margin: 10px 0;
        }
        .button {
            background-color: #5865f200;
        }
        .button:hover, .join-discord:hover {
            background-color: #0e070fa6;
            scale: 1.2;
            transition: var(--transition);
        }
        .discord-button {
            background-color: #5865f200;
        }
        .discord-button:hover {
            background-color: #0e070fa6;
        }
        .discord-widget {
            position: fixed;
            top: 50px;
            left: 50px;
        }
        .server-image {
            position: fixed;
            top: 1;
            left: 1;
        }
        .about-me {
            position: absolute;
            top: 600px;
            left: 50px;
            padding: 15px 25px;
            font-size: 18px;
            color: #252525;
            border: 2px groove;
            border-radius: 5px;
            text-decoration: none;
        }
        .about-me-text {
            font-family: cursive;
        }
        .red {
            color: red;
        }
        .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 25;
            margin-bottom: 25;
            padding: 20px;
        }
        .cardbutton{
            display: inline-block;
            text-decoration: none;
            display: inline-block;
            font: var(--p);
            color: var(--colorp);
            background: linear-gradient(var(--colorbody), var(--colorbody)) padding-box,
            linear-gradient(45deg, var(--colora) 0%, var(--colora2) 100%) border-box;
            border: solid 2px transparent;
            padding: 12px 24px;
            transition: 0.2s ease-in-out;
            text-align: center;
            margin-top: 8px;
        }
        h3{margin: 0px;}
        .card {
            margin-top: 20px;
            max-width: 350px;
            min-width: 350px;
            max-height: 600px;
            display: flex;
            flex-direction: column;
            background: var(--colors);
            border-radius: 8px;
            overflow: hidden;
        }
        .cardcss {
            padding: 20px;
        }
        .card img {
            border-radius: 0px;
            max-width: 600px;
        }
        h1 {font: var(--h1);} h2 {font: var(--h2);} h3 {font: var(--h3);} p {font: var(--p);}
        