* {
    padding: 0;
    margin: 0;
}

html {
    min-width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    min-height: 100%;
    height: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #1b1b1b;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    overflow: hidden;
    justify-content: center;
}

svg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.lines {
    opacity: 0;
}

.line {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #51B5FF;
}

.lights {
    opacity: 0.65;
}

.light {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #51B5FF;
}


.smoke {
    position: absolute;
    bottom: 80px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    animation: smokeAnimation 4s infinite;
    transform: translateX(-50%);
}

@keyframes smokeAnimation {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -100px);
        opacity: 0;
    }
}

.duck {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    animation: duckAnimation 3s infinite;
    margin-bottom: 60px;
}

@keyframes duckAnimation {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

@media (min-width: 350px) and (max-width: 900px) {
    .duck {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85vh;
        animation: duckAnimation 3s infinite;
        margin-bottom: 80px;
    }
}

@media (min-width: 100px) and (max-width: 349px) {
    .duck {
        display: none;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        animation: duckAnimation 3s infinite;
        margin-bottom: 70px;
    }
}