@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #667eea;
}

.container {
  position: relative;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.5s linear;
}

.container > h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
}

.infos {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: #ebebeb;
}

.infos > p {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #fff;
}

.infos > p > span:first-child {
  width: 120px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #667eea;
}

.infos > p > span:last-child {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 400;
  color: #000000;
  word-break: break-all;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  overflow: hidden;
  transition: all 0.5s linear;
}

.loading > * {
  max-width: 200px;
  width: 50%;
}
