
body {
        font-family:"Aldrich", sans-serif ;
        margin: 0;
        min-height: 100vh;
        background-image: url("assets/img/GhostRoot\ 4k.png");
        background-size: contain;
        background-color: black;
        background-position: center ;
        background-attachment: fixed;
        background-repeat: no-repeat;                
}
    .contact-text{
        font-size: 20px;
        position: absolute;
    } 
    /* Social Icons */
    .socials {
        display: flex;
        justify-content:center;
        gap: 15px;
        margin-bottom: 16px;
    }

    .socials img {
        width: 30px;
    }
    /* Email Button */
    .email{
        display: inline-block;
        background-color: #1cc7b8;
        color: black;
        padding: 12px 25px;
        border-radius: 10px;
        text-decoration: none;
        font-size: medium; 
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap
    } 
    /* Transparenter Textbereich */
    .transparent {
        text-align: center;
        padding: 3px ;
        background: rgba(0,0,0,0.7); 
        font-size: 20px;
        color: rgb(12,222,198);            
    }
    /* Home Button */
    .homeBtn { 
        color: rgb(0, 0, 0);
        display:flex;
        margin: 0 auto;
        display: inline-block;
        background: rgb(12,222,198);
        color: rgb(0, 0, 0);
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 10px;
        font-size: 18px;
        transition: 0.3s;
        position: absolute;
        top: 95%;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav {
    background: #000000;
    padding: 15px;
    
    }


    /* Home Farbe ändern */
    .home_farbe {
        color: red;
    }

    /* Dropdown */
    .dropdown {
        position: relative;
        display: inline-block;
        left: 40px;
    }

    /* Menü versteckt */
    .mega-menu {
        display: none;
        position: absolute;
        background: #000000;
        top:100%;
        left: -20px;
        padding: 20px;
        min-width: 250px;
    }

    /* Beim Hover sichtbar */
    .dropdown:hover .mega-menu {
        display: block;
    }

    /* Links im Menü */
    .column a {
        display: block;
        color: black;
        margin-bottom: 5px;
    }

    .nav a{
        color:  rgb(12,222,198);
        font-size: 20px;
        text-decoration: none;
        margin-right: 5px;
    }

    .liste{
        list-style: none;
        padding: 0;
    }


/* MEDIA QUERIES */

/* Home Button mobil + Tablet zusammengelegt */

    @media (max-width: 768px) {
        
        .homeBtn {
            padding: 10px 10px;   /* ✅ kleiner */
            font-size: 15px;     /* ✅ kleiner Text */
            position: absolute;
            top: 65%;
            left: 50%;
            transform: translateX(-50%);
        }    
        .email {
            padding: 10px 10px;   /* ✅ kleiner */
            font-size: 15px;     /* ✅ kleiner Text */
            position: absolute;
            top: 38%;
            left: 50%;
            transform: translateX(-50%);
        }
        .dropdown {
            left: 0px;
        }
    }

    @media (max-width: 1024px) {
        .homeBtn {
            padding: 10px 10px;   /* ✅ kleiner */
            font-size: 15px;     /* ✅ kleiner Text */  
            top: 70%;
            left: 50%;
            transform: translateX(-50%);
        }


    }


   