body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #444;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: white;
}
.info {
    text-align: right;
    flex: 1;
}
.title {
    text-align: center;
    flex: 1;
    width: 100vw;
}
.list {
    display: flex;
    font-size: 20px;
}
.button {
    flex: 0;
    text-decoration: none;
    border-width: 2px;
    border-style: solid;
    border-radius: 5px;
    border-color: black;
    padding: 5px 5px;
    transition-duration: 400ms;
}
.button:hover {
    background-color: rgb(31, 116, 31);
}
a {
    color: white;
    text-decoration: none;
}
li {
    color: white;
}