* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  max-height: 950px;
  font-family: "Winky Rough";
  background-image: url(img/J.K.\ Rowling.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  background-attachment: scroll;
}

header h1 {
  margin-left: 50px;
  color: whitesmoke;
}
.navbar {
  padding: 12px;
  background-color: rgba(55, 55, 55, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar ul li {
  margin-right: 50px;
}

.navbar ul li a {
  color: whitesmoke;
  text-decoration: none;
  font-weight: bold;
}
.navbar ul li a:hover {
  text-decoration: line-through;
  color: aqua;
}

.about {
  background-color: rgba(55, 55, 55, 0.7);
  text-align: center;
  color: whitesmoke;
  border: 2px dotted black;
  max-width: 1650px;
  position: absolute;
  top: 40%;
  left: 6%;
  border-radius: 5px;
}
.about p {
  font-family: "Beau Rivage";
  font-size: 40px;
}
#info {
  position: relative;
  top: 107.6vh;
  background-color: #1d1e32;
  height: 950px;
}

.second {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.second img {
  margin-top: 80px;
  width: 350px;
  height: auto;
  padding: 8px;
  border: 1px solid black;
}
.second figcaption {
  font-size: 12px;
  color: whitesmoke;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.content {
  width: 80%;
  border: 5px dotted #7a7777;
  text-align: center;
  color: whitesmoke;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.content2 {
  width: 80%;
  border: 5px dotted #7a7777;
  text-align: center;
  color: whitesmoke;
  margin: 10px auto;
  padding: 20px;
  box-sizing: border-box;
}
#books {
  display: flex;
  justify-content: center;
  position: relative;
  top: 107.6vh;
  background-color: #1a1825;
  height: 950px;
}
.content3 {
  text-align: center;
  color: whitesmoke;
}
.content3 h2 {
  padding-top: 100px;
  font-size: 50px;
}
.content3 ul {
  font-family: "Beau Rivage";
  list-style-type: circle;
  font-size: 30px;
  margin-top: 40px;
}

footer {
  color: aliceblue;
  padding: 25px;
  text-align: center;
  position: relative;
  top: 98vh;
  background-color: rgb(17, 33, 72);
}
