/*
 * Base styles for the entire website
 */

body {
    background: black;
    color: white;
    padding: 0;
    margin: 0;
}

/*
 * General element styles
 */
h1 {
    font-weight: bolder;
}

a {
    text-decoration: none;
}

.light-shadow {
    box-shadow: 0 0 10px 5px rgb(60, 60, 60);
}

.no-list {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.center {
        text-align: center;
}