h1 {
    margin:0;
    color:white;
}

h2 {
    margin:0;
}

body {
    background-color:#151515;
    overflow-x : hidden;
}

pre {
    font-family: Montserrat;
}

.separator {
    height: 1px;
    width: 100%;
    background-color: #717171;
}

/* DISCORD BUTTON */

.discordButton {
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(88, 101, 242, 1);
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: rgba(88, 101, 242, 1);
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
    width: fit-content;
}

.discordButton span {
    margin: 10px;
}

.discordButton::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.2s ease-out;
    z-index: -1;
}

.discordButton:hover {
    color: #fff;
    border: 1px solid rgba(88, 101, 242, 1);
}

.discordButton:hover::before {
    box-shadow: inset 0 0 0 10em rgba(88, 101, 242, 1);
}