body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

a:link {
    color: #ff9966;
}

a:visited {
    color: #ffbbaa;
}

a:hover {
    color: white;
}

a:active {
    color: red;
}

h1 {
    color: #cc99ff;
    font-size: 40px;
}

h2 {
    color: #cc99ff;
    font-size: 30px;
}

h3 {
    color: #cc99ff;
    font-size: 20px;
}

header, footer {
    background-color: #666688;
    color: black;
    text-align: center;
    padding: 10px;
    font-size: 30px;
    font-weight: bold;
}


input, textarea, select {
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

input[type="file"] {
    background-color: goldenrod;
    color: black;
    border-radius: 5px;
}

button {
    background-color: goldenrod;
    color: black;
    border-radius: 5px;
    font-weight: bold;
    padding: 5px 10px;
}

select {
    background-color: goldenrod;
}

select option {
    background-color: black;
    color: white;
}

select option:checked {
    background-color: goldenrod;
    color: black;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tr {
    border-bottom: 1px solid white;
}

nav {
    background-color: maroon;
    font-size: 20px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

nav a:hover {
    background-color: goldenrod;
    color: black;
    font-weight: bold;
}

nav a:active {
    text-decoration: none;
}

nav a:link,
nav a:visited {
    color: white !important;
}
