body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    background: #f69d3c;
    

}

h1 {
    text-align: center;
    border: 4px inset black;
    background-color: brown;
    color: white;
    margin-bottom: 100px;
}

.container {
    display: flex;
    justify-content: space-around;
}

h2 {
    text-align: center;
    text-decoration: underline;
}

#book-form {
    background: blanchedalmond;
    border: 5px groove black;
    border-radius: 8px;
    height: 500px;
}

.radio-buttons {
    display: flex;
    flex-direction: column;
    align-content: center;
    border: 4px solid black;
    border-radius: 8px;
    background-color: burlywood;
    font-weight: bold;
}

#bookshelf {
    width: 800px;
    background-color:blanchedalmond;
    border: 5px groove black;
    border-radius: 8px;
}

#bookshelf-ul {
 
    margin: 0;
    padding: 0;
}

form {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

input {
    width: 200px;
    border: 1px solid black;
    border-radius: 4px;
    margin: 5px 0;
}

button {
    width: 200px;
    background-color: green;
    font-weight: bold;
    border: 2px solid black;
    border-radius: 4px;
    color: white;
    margin-top: 20px;
    align-self: flex-start;
}

li {
    list-style-type: none;
}

.book-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    align-content: center;
    border: 1px solid black; 
    padding: 10px;
    margin: 10px; 
}

.book-item span {
    flex-grow: 1;
}



.book-item button {
    background-color: red;
    width: 80px;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 10px;
    align-self: center;   
}

label {
    text-align: center;
}

label:first-of-type {
    margin-top: 10px;
}

#pages {
    margin-bottom: 20px;
}

input[type="radio"] {
    margin-bottom: 20px;
  }

input[type="radio"]:last-of-type {
    margin-bottom: 10px;
  }