/* Discord Label */
.discord-label {
    background-color: var(--blue);
}
.discord-label p {
    color: var(--white);
    font-weight: 500;
}
.discord-label .btn {
    font-weight: 600;
    color: var(--background);
    font-size: 15px;
    padding: 8px 14px;
}
.discord-label .btn:hover,
.discord-label .btn:active,
.discord-label .btn:focus {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--background);
}
.discord-label .btn svg {
    width: 20px;
    height: 20px;
    fill: var(--background);
}
footer {
    background: radial-gradient(farthest-corner at bottom left,var(--light-dark),var(--dark),var(--dark));
}
footer h3 {
    font-weight: 500;
    color: var(--white);
}

footer h3 span {
    font-weight: 800;
}
footer h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
}
footer h4::before {
    content: '';
    position: absolute;
    width: 10%;
    height: 2px;
    border-radius: 50px;
    display: block;
    left: 0;
    right: 0;
    bottom: -8px;
    background: var(--blue);
  }
footer ul {
    padding: 0;
    list-style: none;
}
footer ul li {
    line-height: 36px;
}
footer ul a {
    color: var(--light);
    text-decoration: none;
    position: relative;
}
footer ul a svg {
    width: 20px;
    height: 20px;
}
footer ul a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    border-radius: 50px;
    display: block;
    left: 0;
    right: 0;
    bottom: -6px;
    background: var(--white);
    transition: width .2s ease-in-out;
}
footer ul a:hover::before {
    width: 40%;
}
footer ul a:hover {
    color: var(--white);
}
@media (max-width: 768px) {
    footer {
        text-align: center;
    }
}

