/* sorry bootstrap im gonna do my own thing here with link colors */
/* unvisited link */
a:link {
    color: #73ffd3;
}

/* visited link */
a:visited {
    color: #73ffd3;
}

/* mouse over link */
a:hover {
    color: #ff69b4;
}

/* selected link */
a:active {
    color: #b83577;
}
a {
    text-decoration: none;
}
::selection {
    background: #73ffd3;
}

body {
    background: black;
    color: white;
}