body {
  /*center*/
  display: flex;
  align-items: center;
  flex-direction: column;

  font-family: "Arial Black", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
  min-height: 100vh;
  margin: 0;
  animation: fadeIn 1s ease-in-out;
}

h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
  text-align: center;
  animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  animation: popIn 0.5s ease-in-out;
}

@media (max-width: 1024px) {
  .container-wrapper {
    width: 100%;
  }
}

.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}

.card {
  text-align: center;
  width: 16rem;
  height: 12rem;
  padding: 1.25rem;
  background-color: white;
  border-radius: 0.8rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .card {
    width: 90%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
  }
}

.card-ip {
  height: fit-content;
	width: fit-content;
}

.card-title {
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .card-title {
    font-size: 3rem;
  }
}

.card-value {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80%;
}

.card-value-ip {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .card-value-ip {
    font-size: 2rem;
  }
}

.card-value .unit {
  font-size: 1.5rem;
  color: #666666;
}

.card-value-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .gauge {
    display: none;
  }

  .card-value-mobile {
    display: inherit;
  }
}