body {
    background: #0a0a0a;
    text-align: center;
    font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;

    overflow: hidden;
}


h1 {
    color: #333;
    font-size: 50px;
    text-transform: uppercase;
    font-family: Lacquer;
}

.neon {
    color: #FFFFFF;
    text-align: center;

    /** Text shadow with glow of 2 colors */
    text-shadow: 0 0 15px #56489d, 0 0 75px #8856a3;
    text-shadow: 0 0 5px #584199, 0 0 10px #584199, 0 0 30px #a031cc, 0 0 45px #9b1df0, 0 0 60px rgb(234, 14, 241);

    animation: glow 5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #584199, 0 0 10px #584199, 0 0 30px #a031cc, 0 0 45px #9b1df0, 0 0 60px rgb(234, 14, 241);
    }
    to {
        text-shadow: 0 0 1px #584199, 0 0 5px #584199, 0 0 15px #a031cc, 0 0 20px #9b1df0, 0 0 35px rgb(234, 14, 241);
    }
}

#social {
    color: #9b1df0;
    color: #fff;
    font-family: Kalam, Kalam, Kalam;
    font-size: 24px;
    margin: 55px 0 10px;
}


.socials {
    text-align: center;
}

.socials a {
    display: inline-block;
}

.socials img {
    background: white;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}

.socials img:hover {
    background: linear-gradient(45deg, #9b1df0, #ff4da6);
}

.divider {
    width: 550px;
    color: #9b1df0;
    margin: 45px 0;

    text-align: center;

    animation: divider-grow 3s ease-in-out infinite alternate;
}

.song {
    color: #fff;
    font-size: 15pt;
    margin-bottom: 15px;
}

button {
    color: white;
    background-color: #9b1df0;
    border-radius: 15px;
    border: 2px solid #9b1df0;
    width: 80px;
    height: 30px;
    cursor: pointer;
    margin: 10px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #030303;
    color: white;
    text-align: center;
}

.footer a {
    color: #9b1df0;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 160px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background: linear-gradient(45deg, rgb(155, 29, 240, 0.9), rgb(255, 77, 166, 0.9));
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #ff4da6;
    border-top: 5px solid rgb(155, 29, 240, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}