@media (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
.err-container {
    margin: 6% 12% 0 12%;
    width: 76%;
    display: block;
    padding: 0;
}
@media (min-width: 1600px) {
  .err-container {
    margin: 5% 20% 0 20%;
    width: 60%;
    display: block;
    padding: 0;
  }
}
span.err-status {
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 500;
    color: #CECECE;
    letter-spacing: 10px;
}
span.err-statuscode {
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 500;
    color: #626262;
    letter-spacing: 10px;
}
table {
  table-layout: fixed;
  width: 100%;
  height: 100%;
  border-spacing: 0px;
}
.capsule {
  border: 2px solid #0404ff;
  border-radius: 30px;
  border-spacing: 0px;
}
@media (min-width: 1600px) {
    table {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    border-spacing: 30px;
  }
  .capsule {
    border: 3px solid #0404ff;
    border-radius: 30px;
    border-spacing: 0px;
  }
}
tr {
  font-weight: bold;
}
th {
  border: 2px solid #0404ff;
  border-radius: 26px 26px 0px 0px;
  height: 54px;
  font-size: 1.5rem;
  padding: 1rem;
  width: 100%;
  background-color: #0404ff;
}
td {
  width: 100%;
  padding: 2rem 1rem 2.5rem 1rem;
}
li {
  font-size: 0.8rem;
}
#animated {
  animation: floatAnimation 2s ease-in-out infinite alternate;
}
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
    box-shadow: 0px 0px 0px 0px rgba(204, 204, 204, 0.8);
  }
  50% {
    transform: translateY(0px);
    box-shadow: 0px 0px 10px 10px rgba(204, 204, 204, 0.8);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0px 0px 0px 0px rgba(204, 204, 204, 0.8);
  }
}
a {
    text-decoration: none;
}
.shine {
  font-size: 1.1rem;
  color: transparent;
  /* Dégradé : bleu + bande blanche */
  background: linear-gradient(
    90deg,
    #0404ff 40%,
    #ffffff 50%,
    #0404ff 60%
  );
  background-size: 200% 100%;
  background-position: 200% 0%;
  /* Applique le background au texte */
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 3s linear infinite;
}
@keyframes shine {
  to {
    background-position: 0% 0%;
  }
}
h1 {
  font-weight: normal;
}
h3 {
  color: #626262;
}