/* Fonts - Import */
@font-face {
   font-family: Momentz;
   src: url(../fonts/Momentz.ttf);
}

/* Corpo */
.gradient-bg {
  background:
    radial-gradient(#00000040 0.5px, transparent 0.5px),
    radial-gradient(#00000040 0.5px, transparent 0.5px),
    linear-gradient(135deg, #C71F37 0%, #641220 100%);
  background-size: 20px 20px, 20px 20px, cover;
  background-position: 0 0, 10px 10px, center;
  background-repeat: repeat, repeat, no-repeat;
}
.brand {
  font-family: Momentz;
}
.avatar-container {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.command-icon:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.sup {
  text-decoration: underline wavy;
}