
body {background-color: black;}

#container {
    max-width: 900px;
    margin: 0 auto;
}

#headerArea {
    /* border-style: solid;
    border-width: 5px;
    border-color: #7e07ad; */
}

#header {
    position: relative;
    width: 99.25%;
    background-color: #7e07ad;
    height: 150px;
    background-image: url('/images/night-stars-banner.gif');
    background-size: 100%;
    border-style: solid;
    border-width: 0.5%;
    border-color: #7e07ad;
}

#header > h1 {
    position: absolute;
    color: purple;
    left: 350px;
    top: 30px;
}

#navbar {
    height: 40px;
    background-image: linear-gradient(to bottom, purple, rgb(0, 28, 119));
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: aqua;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: gold;
    font-weight: 800;
    text-decoration: underline;
}

#content {
    width: 99.25%;
    border-style: solid;
    border-width: 0.5%;
    border-color: #7e07ad;
}

main {
    color: purple;
    text-align: center;
}

#footer {
    width: 99.25%;
    border-style: solid;
    border-width: 0.5%;
    border-color: #7e07ad;
    text-align: center;
    color: #7e07ad;
}