/* Resetowanie stylów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Arial", sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  font-family: "Inter", sans-serif;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: large;
  font-weight: 800;
  text-align: center;
  padding: 0px 50px;
}

.rotate {
  display: inline-block;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hammer {
  display: inline-block;
  animation: hammer-hit 1s infinite ease-in-out;
}

@keyframes hammer-hit {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
