#halloween-fog {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 20vh;

    pointer-events: none;

    z-index: 2;

    background: linear-gradient(
        to top,
        rgba(200, 200, 200, 0.4) 0%,
        rgba(180, 180, 180, 0.3) 20%,
        rgba(160, 160, 160, 0.2) 40%,
        rgba(140, 140, 140, 0.1) 60%,
        transparent 100%
    );
}

#blue-circle {
  fill: #000 !important;
}

a {
    color: rgb(255, 180, 0);

    &:hover {
        color: rgb(209, 140, 13);
    }
}