/* FONT */
@font-face {
  font-family: 'Arial';
  font-weight: 400;
}

/* STILI BASE */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.4;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', sans-serif;
}

a {
  text-decoration: none;
  transition: 0.2s;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}


/* MARQUEE ANIMATION */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MARQUEE WRAPPER */
.animate-\[marquee_25s_linear_infinite\] {
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

.linkfooter {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.border-r .border-b .border-t {
 border-color: #C9C9C9;
}
