* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  transition: color 0.6s ease;
}
form {
    width: 400px;
}
form input {
    margin: 10px;
    border-radius: 5px;
    border: 1px solid black;
    padding: 3px;
}
.btn {
    background-color: hsl(180, 100%, 50%);
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    font-weight: bold;
}
.btn:hover {
    background-color: darkred;
    transition: background-color 0.6s ease;
}
p {
    padding: 10px;
    max-width: 60vh;
    text-indent: 2em;
}
body {
    background-color: black;
}
a {
    color: cyan;
    text-decoration: none;
}
a:hover {
    color: darkred;
}
aside {
    display: flex;
    justify-content: right;
}
aside section {
    height: 70vh;
    width: 50vh;
}
.book-cover {
    height: 30vh;
    width: 20vh;
}
footer {
    text-align: center;
}
h1 {
    color: white;
}
.article-section {
    max-width: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.element {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    max-width: fit-content;
}
nav {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}
nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin: 10px;
    list-style-type: none;
    font-weight: bold;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    font-size: 18px;
}
header {
    text-align: center;
}
header img {
    height: 20vh;
    max-width: 100%;
    max-height: 10%;
}
.error {
    color: red;
}
.book {
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    max-width: fit-content;
}
#books {
    display: flex;
    -ms-flex-align: center;
}
.statsList {
    margin: 10px;
    list-style-type: none;
}
.book-container {
    display: flex;
    flex-flow: row;
    -ms-flex-flow: row;
}
#profile-picture {
    height: 200px;
    width: 200px;
    border-radius: 10px;
    border: 5px solid black;
}
#links {
    list-style-type: none;
    display: inline;
}