body {
    position: relative;
    height: 100vh;
    background: none;
    overflow: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
    z-index: -2;
    pointer-events: none;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(75% 75% at 50% 50%, transparent 0%, var(--back) 80%);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container {
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container img {
    transition: transform 0.3s ease;
    display: block;
}

.logo-container:hover img {
    transform: rotateX(15deg) rotateY(-15deg) rotateZ(5deg);
}

/*header {
    position: relative;
    padding: 0 3rem;

    background: none;
    box-shadow: none;
    border-bottom: none;
}*/