.body-home {
    color: #000;
    cursor: none;
    background-image: url("../../media/images/stage.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 85%;
    background-attachment: fixed;
}

a,
h1,
h2,
p {
    color: #000;
    text-decoration-color: #000;
}

.menu-name a {
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}

.link:hover {
    text-decoration: line-through;
    text-decoration-color: #000;
}

#spotlight {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    background-color: #ff0055;
    pointer-events: none;
    z-index: -1;
    display: none;
    overflow: hidden;
}

@media screen and (max-width: 915px) {
    .menu-label p {
        color: #000;
    }

    .hide-on-mobile {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .body-home {
        background-size: cover;
    }

    #spotlight {
        display: none;
    }
}