@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    box-sizing: border-box;
}
body {
    background-color: #333333;
    color: #EEEEEE;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: larger;
    font-style: normal;
    margin: 0px;
    padding: 0px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #222222;
    height: 50px;
    width: 100%;
    margin: 0px;
    padding: 5px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px;
    margin: 0px
}
header ul a {
    color: #EEEEEE;
    padding: 10px 20px;  /* Adjust padding as needed */
    display: inline-block;
    text-decoration: none;
}
hr {
    width: 90%;
    height: 5px;
    color: #333333;
}
footer {
    background-color: #222222;
}

.headSpacer {
    height: 50px;
}
.clearBoth {
    clear: both;
}

.textCentered {
    text-align: center;
}
.centeredColumn {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.underlinedLink {
    text-decoration: underline;
    text-decoration-color: #ff5e00;
}