@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

.end-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.5rem;
  width: 400px;
  display: none;

  background-color: #f0eee9;
  border: 1px solid #735c00;
  border-radius: 4px;
  z-index: 2;
}

.end-screen * {
  font-family: "Space Grotesk", sans-serif;
}

.end-screen .title {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  border-bottom: 3px solid #735c00;
}

.end-screen .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d1c0;
  margin: 0.75rem 0;
  padding: 0.25rem 0;
}

.end-screen .time .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.end-screen .time .left .time-icon {
  max-width: 32px;
}

.end-screen .stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.end-screen .stats .stat-element {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0.6rem 0.25rem;

  background-color: #f6f3ee;
  border: 1px solid #d0c5af;
}

.end-screen .stats .stat-element .left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.end-screen img {
  width: 100%;
  max-width: 16px;
}

.end-screen .continue-btn {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  color: #554300;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 0;
  border: none;
  background: #d4af37;
  box-shadow: 0 3px 0 #574500;
  cursor: pointer;
}

.end-screen .continue-btn:hover {
  background-color: #e5bf48;
}

.end-screen .continue-btn:active {
  transform: translateY(3px);
  box-shadow: none;
}

/* CORNERS */
.end-screen .top-left-corner {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #735c00;
  border-left: 3px solid #735c00;
}

.end-screen .top-right-corner {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #735c00;
  border-right: 3px solid #735c00;
}

.end-screen .bottom-left-corner {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #735c00;
  border-left: 3px solid #735c00;
}

.end-screen .bottom-right-corner {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #735c00;
  border-right: 3px solid #735c00;
}
