body {
  font-family: "Roboto Mono", monospace;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 125%;
  background-color: white;
}

#nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: white;
    transition: 0.4s;
    padding: 10px;
}

#myLinks a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

#myLinks a:hover {
    background-color: #ddd;
    color: black;
}

#logotype {
    color: white;
    font-size: 24px;
    margin-right: 20px;
}

.content-wrapper {
    display: flex;
    margin: 20px;
}

.left-column {
    flex: 1;
    max-width: 250px;
}

.works-list {
    list-style-type: none;
    padding: 0;
}

.works-list li {
    margin-bottom: 15px;
}

.works-list a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.works-list a:hover {
    color: #007BFF;
    text-decoration: underline;
}
