/*general*/

body {
    background-color: #03000d;
    color: white;
    font-family: ms gothic;
    margin: 5% 30%;
}

h1 {
    font-size: 65px;
    letter-spacing: -10px;
    text-align: right;
    margin: 0;
}

h2 {
    font-size: 30px;
    font-weight: 100;
    letter-spacing: -5px;
    margin: 0;
}

a {
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    margin: 5px 10px;
    color: white;
}

/*classes/ids*/

.inactive {
    background-color: #3c00ff;
    border: 1px solid #1e0080;
    padding: 5px 10px;
    box-shadow: 0 0 10px 1px #3c00ff;
    display: inline-block;
}

.inactive:hover {
    background-color: #1e0080;
    border: 1px solid #3c00ff;
}

.special {
    letter-spacing: normal;
    font-weight: 100;
    text-shadow: 0 0 10px #3c00ff;
}

.flex {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}