html {
  scroll-behavior: smooth;
  font-size: x-large;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }

  from {
    opacity: 1;
    transform: translateY(0);
  }
}

#server-iframe {
  border: orange;
  width: 70%;
  height: 90%;
  border-radius: 10px;
  text-align: center;
  margin-left: 15%;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: 200px 0;
  }
}

#set-counter {
  animation: shimmer 5 ease-in-out 0.5 infinite forwards ease-in-out;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation: bounce 2s ease-in-out infinite;
  transform-origin: center bottom;
}

.icon-container {
  display: inline-flex;
  align-items: baseline;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: fit-content;
  justify-content: flex-end;
  gap: 5px;
}

.icon {
  width: 10%;
  height: 10%;
}

.exercise-box:hover {
  transform: translateY(-5px);
}

.exercise-box {
  width: 100%;
}

.ex-name {
  margin-right: 5px;
}

.pr-container {
  background-color: rgba(55, 65, 81, 0.7);
  border-radius: 0.375rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.pr-container:hover {
  background-color: rgba(55, 65, 81, 0.9);
}

.pr-value {
  font-weight: bold;
  color: #fbbf24;
  font-size: 1.1rem;
}

.pr-input {
  width: 3rem;
  text-align: center;
  background-color: #1f2937;
  border: 1px solid #4b5563;
  border-radius: 0.25rem;
  color: white;
  padding: 0.25rem;
  transition: all 0.2s ease;
}

.pr-input:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.3);
}

.pr-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.btn-pr-plus,
.btn-pr-minus {
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.btn-pr-plus:hover,
.btn-pr-minus:hover {
  transform: scale(1.1);
}
