@font-face {
    font-family: 'minecraft';
    src: url('../fonts/Minecraft.ttf')format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'nintendods';
    src: url('../fonts/NintendoDS.ttf')format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    overflow: hidden;
    background-color: #fff; /* White background */
    position: relative;
    height: 100vh;
    cursor: none;
}
a {
    cursor: none;
}
.shape {
    position: absolute;
    opacity: 0.9;
    pointer-events: all; /* Allow pointer events */
    mix-blend-mode: multiply;
    animation: rotate 30s linear infinite; /* Rotation animation */
    transition: top 0.5s ease-in-out, left 0.5s ease-in-out; /* Smooth transition */
    filter: blur(4px); /* Apply blur to shapes */
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/space-clignancourt-icon.jpg') no-repeat;
    background-size: 100% 100%;
    opacity: .3;
    animation: invert 30s linear infinite;
}
@keyframes invert {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}
.mute-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    z-index: 10;
    font-size: 20px; /* Font size for the text */
    color: black; /* Text color */
    font-family: minecraft;
    cursor: none;
}
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: invert(1);
    pointer-events: none; /* So it doesn't interfere with other elements */
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
    z-index: 9999;
}
.mute-button:hover .cursor {
    width: 50px;
    height: 50px;
}
.navicon1 {
    padding: 0px;
    width: 50px;
    height: 10px;
    background-color: rgba(238,255,206,1);
}
.navicon2 {
    position: absolute;
    padding: 0px;
    width: 50px;
    height: 10px;
    top: 20px;
    background-color: rgba(238,255,206,1);
}
.navicon3 {
    position: absolute;
    padding: 0px;
    width: 50px;
    height: 10px;
    top: 40px;
    background-color: rgba(238,255,206,1);
}
.navimage {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    transition: transform .5s;
    background-color: rgba(238,255,206,0);
}
.menu:hover .navimage, .menu:active .navimage {
    transform: rotate(0.75turn);
    background-color: rgba(238,255,206,0);
}  
.menu {
    position: fixed;
    top: 30px;
    right: 30px;
    text-align: right;
    z-index: 1000;
    background-color: rgb(150,23,39);
}
.deroulant {
    padding-top: 79px;
    display: none;
}
.deroulant a {
    padding: 0px;
    text-decoration: none;
    margin-bottom: 10px;
    font-family: minecraft;
    font-size: 1.5em;
    color: rgba(238,255,206,1);
}
.deroulant a:hover, .deroulant a:active {
    padding: 0px;
    text-decoration: none;
    margin-bottom: 10px;
    font-family: minecraft;
    font-size: 1.5em;
    background-color: rgba(238,255,206,1);
    color: rgba(150,23,39,1);
}
.menu:hover .deroulant, .menu:active .deroulant {
    display: block;
}
.yt svg {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 30px;
}
.insta svg {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
}
.caca {
    margin-top: 200px;
    margin-left: 200px;
}

iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    height: 60%;
    z-index: 1000;
}