* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: Arial, sans-serif;
}

#carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    transition: transform 3s ease;
    user-select: none;
    pointer-events: none;
}

.carousel-item.active img {
    transform: scale(1);
}

#music-control, #snow-control {
    position: fixed;
    top: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2000;
}

#music-control {
    right: 20px;
}

#snow-control {
    left: 20px;
}

#music-control:hover, #snow-control:hover {
    transform: scale(1.1);
}

#music-control svg, #snow-control svg {
    width: 30.9px;
    height: 30.9px;
    fill: black;
}

@media (max-width: 768px) {
    #music-control, #snow-control {
        width: 40px;
        height: 40px;
    }

    #music-control svg, #snow-control svg {
        width: 24.72px;
        height: 24.72px;
    }
}