body {
    padding: 0;
    margin: 0;
    background-color: #1B1B1B;
    font-family: Verdana;
    font-size: 1rem;
    color: #00A0F0;
    text-align: center;
}

.mitte {
    display: flex;
    justify-content: center;
    align-items: center;
}

#teaser {
    max-width: 100%;
    margin: 0 auto;
}

#teaser video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

nav {
    position: sticky;
    top: 0px;
    background-color: #1B1B1B;
    z-index: 9999;
}
  
a:hover{
    background: #00A0F0;
    color: #ffffff;
    box-shadow: 0 0 5px #00A0F0,
                0 0 25px #00A0F0;
}

.info {
    font-size: 7.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    white-space: nowrap;
    background: linear-gradient(to bottom, rgb(255 255 255 / 35%) 30%, rgb(255 255 255 / 0%) 76%);
    -webkit-background-clip:text;
    background-clip: text;
    color: transparent;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 40px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
    position: absolute;
    width: 200px;
    height: 358px;
    background: #1B1B1B;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}  

.card.center{
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}

.card.left-1,
.card.right-1{
    z-index: 5;
    transform: scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.left-2,
.card.right-2{
    z-index: 5;
    transform: scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.left-1 img,
.card.left-2 img,
.card.right-1 img,
.card.right-2 img{
    filter: grayscale(100%);
}

.card.left-1{
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
}

.card.left-2{
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
}

.card.right-1{
    transform: translateX(200px) scale(0.9) translateZ(-100px);
}

.card.right-2{
    transform: translateX(400px) scale(0.8) translateZ(-100px);
}

.card.hidden{
    opacity: 0;
    pointer-events: none;
}

.work-info{
    text-align: center;
    margin-top: 10px;
    transform: all 0.5s ease-out;
}

.work-name{
    color: #00A0F0;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.work-name::before,
.work-name::after{
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 1px;
    background: rgb(255, 255, 255);
}

.work-name::before{left: -120px;}
.work-name::after{right: -120px;}
.work-plus{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.1rem;
    padding: 10px 0;
    margin-top: -15px;
}

.dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}
.dot.active{
    background: #00A0F0;
    transform: scale(1.4);
}

.nav-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1B1B1B;
    color: #00A0F0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 2rem;
    border: none;
    padding-bottom: 4px;
}
.nav-arrow:hover{
    transform: translateY(-50%) scale(1.3);
}
.nav-arrow.left{
    left: 20px;
    padding-right: 3px;
}
.nav-arrow.right{
    right: 20px;
    padding-left: 3px;
}

/*media query*/

@media (max-width:768px){

}   

footer ul, nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer ul li a, nav ul li a {
    font-weight: 600;
    padding: 20px;
    text-decoration: none;
    color: #00A0F0;
    font-size: 2rem;
}

section {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
}

#impressumtext {
    text-align: left;
}