.centerContent {
    text-align: center;
}



.pad {
    position: fixed;
    padding-top: 2em;
    width: 100vw;
    left: 0;
}

.menu {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 100;
    font-size: 1.2em;
    display: inline-block;
    padding: 1em;
}

.menuHover {
    text-align: center;
    color: rgb(200, 200, 200);
    text-decoration: none;
    padding: 8px; /* Adjust padding to account for border */
}

.menuHover:hover {
    background-color: rgb(200, 200, 200);
    color: rgb(30, 30, 30);
    text-decoration: none;
}

.menuHover:active {
    background-color: rgb(255, 255, 255);
    color: rgb(30, 30, 30);
}

/* Neue CSS-Regeln für das Hamburger-Menü */
.hamburger {
    display: none;
    font-size: 100px;
    cursor: pointer;
    position: fixed;
    top: 80px;
    right: 80px;
    color: black;
}


.hamburger-menu {
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(245, 245, 245);
    z-index: 1000;
    animation-name: slideIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
}

@keyframes slideIn {
    0% {
        transform: scale(0.2);
        transform-origin: 110% -20%;
        clip-path: circle(30%);
    }
    100% {
        transform: scale(1);
        transform-origin: 100% 0%;
        clip-path: circle(100%);
    }
}

.menuBurger {
    display: flex;
    font-family: Arial, sans-serif;
    font-weight: 100;
    font-size: 100px;
    flex-direction: column;
    align-items: center;
    padding-top: 3em;
}

.menuBurgerHover {
    display: block;
    color: rgb(30, 30, 30);
    text-decoration: none;
    margin: 0.5em;
    padding: 0.5em;
}

.menuBurgerHover:hover {
    background-color: rgb(30, 30, 30);
    color: rgb(200, 200, 200);
    text-decoration: none;
}

.menuBurgerHover:active {
    background-color: rgb(30, 30, 30);
    color: rgb(200, 200, 200);
}

.close {
    display: none; /* Standardmäßig versteckt */
    font-size: 100px;
    top: 80px;
    right: 100px;
    cursor: pointer;
    position: fixed;
    z-index: 1001; /* Über dem Menü */
}


@media screen and (max-width: 1200px) {
    .menu {
        display: none;
        /* display: block;
        font-size: 1em;
        padding: 1.5em; */
    }

    .pad {
        display: none;
    }
    
}

@media screen and (max-width: 1200px) {
    .hamburger {
        display: block;
    }
    
}