body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: whitesmoke;
    background-color: #3f3f3f;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Adjust the thickness of the rainbow border */
    background: linear-gradient(to right, violet, indigo, blue, green, yellow, orange, red);
}

.buildInfo {
    font-size: small;
}

nav {
    margin-left: 12px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 15px;
    color: whitesmoke;
}

nav a {
    color: whitesmoke;
    text-decoration: none;
    font-weight: bold;
}

header .userProfile {
    margin-left: auto;
}


.logo-box {
    font-size: larger;
    font-weight: bolder;
    position: relative;
    text-decoration: none;
    color: whitesmoke;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #fb9e04;
}

.logo {
    border-radius: 50%;
    margin-right: 8px;
}

main {
    padding: 20px;
}

footer {
    font-size: smaller;
    background-color: #333;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}