* {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

body {
    background-color: black;
    color: white;
    background-image: url('WMNebulaBG.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    text-align: left;
}

.NAVIGATION {
    display: none;
    opacity: 0;
}

.TBC {
    background-color: rgb(12, 12, 12);
}

.welcome {
    width: 100%;
    height: 100vh;
    background-color: transparent;
    text-align: center;
    align-content: center;
    font-size: xx-large;
}

main {
    min-height: 100vh;
    min-width: 100%;
    align-content: center;
}

a {
    text-decoration-color: gray;
    color: white;
}

main nav {
    padding: 100px;
}
main div {
    padding: 200px;
}

main section {
    position: relative;
    z-index: 2;
    background-color: rgb(12, 12, 12);
    padding: 20px;
    margin: 40px;
    border-radius: 5px;
    box-shadow: 0 0 5px gray;
    min-height: 400px;
    opacity: 0;
    transition: margin-left 0.3s ease, opacity 0.8s ease;
}

ol {
    padding: 20px;
    text-align: left;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

main nav::after {
    display: block;
    content: '';
    height: 40px;
    border-radius: 2px;
    border: solid gray;
}

.mc {
    padding: 20px;
}

footer::before {
    display: block;
    content: '';
    height: 2px;
    width: 100%;
    margin-bottom: 40px;
    background: linear-gradient(to right, black, beige, black);
}

.footer-rows {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

}

.empty {
    padding: 100px;
}

.StarFX {
    position: fixed;
    width: 0px;
    height: 0px;
    z-index: 1;
    transition: all 3s ease;
}