@import url("https://fonts.googleapis.com/css2?family=Playwrite+DK+Loopet:wght@100..400&display=swap");
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
* {
  user-select: none;
}
.entries {
  list-style-type: none;
  padding: 0;
}
.entries li {
  margin-top: 1.5rem;
  border-bottom: solid 1px black;
}
body {
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.reload-btn {
  width: 75%;
  justify-self: center;
  align-self: center;
  margin-top: 2rem;
}
.preloader {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  height: 100%;
  width: 100%;
}
.sam-spinner {
  animation: rotation 2s linear infinite;
  border: 5px dotted #daa06d;
  border-radius: 50%;
  padding: 30px;
}
h1,
h2 {
  font-family: "Playwrite DK Loopet", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
h2 {
  margin-top: -5px;
}
h3 {
  font-family: "Playwrite DK Loopet", cursive;
}
p {
  font-family: "Playwrite DK Loopet", cursive;
  margin: 0;
}
.title {
  display: flex;
  flex-direction: row;
}
.stats {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}
.stats-col {
  display: flex;
  width: 50%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
button {
  justify-self: flex-end;
}
.showList {
  margin-top: 1rem;
}
.listContainer {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: #eaddca;
  border: 2px dashed #daa06d;
  padding: 1em;
  border-radius: 15px;
  outline: none;
  box-shadow: 0 0 0 4px #eaddca;
}
.closeButton {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: #eaddca;
  border-radius: 15px;
  outline: none;
  box-shadow: 0 0 0 4px #eaddca;
  border: 2px dashed #daa06d;
}
.listWrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
