@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Quicksand:wght@600&display=swap');

body {
	background-color: #ecf0f1;
	font-family: 'Quicksand', sans-serif;
}

header {
	margin: 50px auto;
	text-align: center;
	color: #2c3e50;
}

header img {
	margin-top: 20px;
}

header img:hover {
	opacity: 0.5;
}

.bg-gr {
	background-color: #27ae60;
}

.bg-turq {
	background-color: #1abc9c;
}

.icon {
	width: 50px;
	cursor: pointer;
}

.icon2 {
	width: 20px;
}

main {
	color: #ecf0f1;
	margin: auto;
	margin-bottom: 100px;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	width: 100%;
	overflow: auto;
}

.box {
	flex: 1 1 576px;
	margin: 5px;
	border-radius: 20px;
	text-align: center;
}

.addBookField {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 20;
  background-color: rgba(44, 62, 80, .5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
}

.open {
	display: flex;
}

.container {
	text-align: center;
	background: #ecf0f1;
	width: 200px;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(154, 160, 185, .05), 0 15px 40px rgba(166, 173, 201, .2);
	padding: 25px;
}

.container input {
	margin: 10px auto;
	width: 100%;
	height: 30px;
	border-radius: 10px;
}

.buttons {
	margin-top: 20px;
}

.my-container {
	background-color: #f1c40f;
  color: #2c3e50;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(154, 160, 185, .05), 0 15px 40px rgba(166, 173, 201, .2);
  padding: 25px;
  text-align: left;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.my-container p {
	opacity: 0.7;
}

.bookspek {
	flex: 9;
}

.read-button {
	height: 20px;
	width: 10px;
	border-radius: 20%;
  background-color: #27ae60;
  border: none;
  outline: none;
  margin: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 2px 2px 2px black;
  flex: 1;

}

.unread-button {
	height: 20px;
	width: 10px;
	border-radius: 20%;
  background-color: #1abc9c;
  background-size: 50px;
  border: none;
  outline: none;
  margin: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 2px 2px 2px black;
  flex: 1;
}

.trash-book {
	height: 20px;
	width: 10px;
	border-radius: 20%;
  background-color: #2c3e50;
  border: none;
  outline: none;
  margin: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: 2px 2px 2px black;
  flex: 1;
}

.read-button:hover, .unread-button:hover, .trash-book:hover {
	background-color: #ecf0f1;
}

.read-button:active, .unread-button:active, .trash-book:active {
	background-color: #e74c3c;
}

footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	background-color: #2c3e50;
	color: #ecf0f1;
}

#pp {
	width: 150px;
	border-radius: 50%;
	border: 2px solid #ecf0f1;
	box-shadow: 2px 2px 2px black;
}

.fbox {
	flex: 1 1 576px;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
}