@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
* {
  margin: 0;
  padding: 0;
}

a {
  display: block;
  text-decoration: none;
  color: white;
}

a:hover {
  color: goldenrod;
}

body {
  width: 100vw;
  height: 100vh;
}

.background_block {
  background-image: url(./img/backgroud.png);
  background-size: cover;
  opacity: 85%;
  width: 100%;
  height: 100%;
  background-position: center center;
  position: fixed;
}

.brand_logo_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.brand_logo_block .author_logo {
  width: 300px;
  border-radius: 25px;
  animation: heartbeat 3.5s cubic-bezier(0.47, 0, 0.745, 0.715) 3s infinite both;
}
.brand_logo_block .dom_col {
  width: 300px;
}

.block_search {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  transition: transform 0.3s;
}
.block_search_form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.block_search_form_input {
  height: 50px;
  width: 220px;
  border-radius: 10px;
  /* justify-content: end; */
  text-align: center;
  font-size: 20px;
}
.block_search_form_input[type=search] {
  font-size: 20px;
  font-family: "Playwrite DE Grund", cursive;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.block_search_form_btn {
  height: 50px;
  width: 85px;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Playwrite DE Grund", cursive;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  background-color: black;
  color: white;
  border-color: white;
}
.block_search_form_btn:hover {
  background-color: goldenrod;
}
.block_search_form_btn:active {
  transform: scale(1.05);
  color: black;
}

.block_main_pos {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}

summary::marker {
  content: "";
}

.block_lists {
  width: 320px;
  display: grid;
  grid-template-columns: 1fr;
  color: white;
  position: absolute;
  justify-content: center;
  background-color: black;
}
.block_lists .block_info {
  display: flex;
  justify-content: space-between;
  font-family: "Playwrite DE Grund", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  text-align: left;
}
.block_lists .block_heading {
  display: flex;
  align-items: end;
}
.block_lists .subblock_heading {
  display: flex;
  align-items: end;
}
.block_lists .logo_number {
  width: 30px;
}
.block_lists .block_info:hover {
  color: goldenrod;
}
.block_lists .block_info:focus {
  color: goldenrod;
}
.block_lists .subblock_info {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 5px;
}
.block_lists .block_1 {
  box-sizing: border-box;
  text-align: left;
  padding-left: 10px;
  border: 4px goldenrod solid;
}
.block_lists .block_2 {
  box-sizing: border-box;
  text-align: left;
  padding-left: 10px;
  border: 4px goldenrod solid;
}
.block_lists .block_4 {
  box-sizing: border-box;
  text-align: left;
  padding-left: 10px;
  border: 4px goldenrod solid;
}
.block_lists .block_5 {
  box-sizing: border-box;
  text-align: left;
  padding-left: 10px;
  border: 4px goldenrod solid;
}
.block_lists .block_6 {
  box-sizing: border-box;
  text-align: left;
  padding-left: 10px;
  border: 4px goldenrod solid;
}
.block_lists .subblock1 {
  font-style: normal;
  font-size: 22px;
  border-top: 2px goldenrod solid;
}
.block_lists .subblock1:hover {
  color: goldenrod;
}
.block_lists .subblock1:focus {
  color: goldenrod;
}
.block_lists .list1 {
  display: block;
  width: 285px;
  margin-bottom: 10px;
}
.block_lists .list2 {
  display: block;
  width: 285px;
  margin-bottom: 10px;
}
.block_lists .list3 {
  display: block;
  width: 285px;
  margin-bottom: 10px;
}
.block_lists .list4 {
  display: block;
  width: 285px;
  margin-bottom: 10px;
}
.block_lists .list5 {
  display: block;
  width: 285px;
  margin-bottom: 10px;
}
.block_lists .list6 {
  display: block;
  width: 285px;
  margin-bottom: 10px;
}
.block_lists ul {
  height: 150px;
  overflow: scroll;
  border: 2px white solid;
  font-size: 25px;
  padding-inline-start: 5px;
  text-align: left;
}
.block_lists .element_for_search {
  border-bottom: 1px goldenrod solid;
}/*# sourceMappingURL=style_numbershelf.css.map */