* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Libre Franklin', sans-serif;
  color: #ffffffaf;
}

.page{
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(to bottom right, #37306B, #393053);
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(20, 1fr);
}


.header {
  grid-column-start: 1;
  grid-column-end: 20;
  grid-row-start: 1;
  grid-row-end: 3;
  background-image: linear-gradient(to bottom right, #443C68, #63598574);
  color: #fff;
  height: auto;
  width: 100vw;
  display: flex;
  padding: 1vw;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
}

#menu {
  cursor: pointer;
}

.link-container {
  width: 10vw;
  height: auto;
  margin-right: 2vw;
  display: flex;
  justify-content: space-between;
}

.body {
  grid-column-start: 4;
  grid-column-end: 15;
  grid-row-start: 3;
  grid-row-end: 18;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  overflow-y: scroll;
  overflow-x: hidden;
  height: 85vh;
  width: auto;
  color: #ffffff68;
  padding: 1vh;
}

.book {
  width: 15vw;
  height: 11vw;
  border-radius: .5vh;
  margin: 1vh;
  padding: 1vh;
  background-image: linear-gradient(320deg, #66347F, #3a072b);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
}

.bookAuthor {
  grid-row-start: 3;
}

.bookLength {
  grid-row-start: 5;
}

.deleteButton {
  cursor: pointer;
  grid-row-start: 1;
  grid-column-start: 7;
}

.readStatusDisplay {
  grid-row-start: 7;
}

.bookTitle, .bookAuthor, .bookLength {
  width: 10vw;
  height: auto;
}

.input-field {
  width: 20vw;
  margin-top: 10vh;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}



#form {
  display: flex;
  flex-direction: column;
  padding: 1vh;
}

.form-line {
  display: flex;
  justify-content: space-between;
}

#newBookButton {
  padding: .75vh;
}

.button-line {
  display: flex;
  align-items: first baseline;
  justify-content: space-between;
}

button {
  background-color: #18122B;
  border-radius: .75rem;
  width: 8vw;
  margin: .5em;
  cursor: pointer;
}

#submit, #cancel {
  background-color: #18122B;
  color: #fff;
  border-radius: .75rem;
  margin: 10px;
  padding: 4px;
  width: 6vw;
  height: 3vh;
  cursor: pointer;
}


input {
  background-color: #18122B;
}
.right-side-bar {
  grid-column-start: 16;
  grid-column-end: 20;
  grid-row-start: 3;
  grid-row-end: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #37306b38;
  height: auto;
  width: 25vw;
}

.footer {
  grid-column-start: 1;
  grid-column-end: 21;
  grid-row-start: 20;
  grid-row-end: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #18122B;
}

.footer-link {
  cursor: pointer;
  text-decoration: none;
}

 /* Dropdown Button */
 .dropbtn {
  color: rgba(255, 255, 255, 0.317);
  padding: 16px;
  font-size: 16px;
  border-radius: 10vh;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #37306b38;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #dddddd9d;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #ffffffc9;
  background-color:  #37306bef;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #dddddd19;
  color: black;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 

