:root {
  --testo-celeste: #30bad3ff;
  --sfondo-testo-celeste: #122230;
  --sfondo-celeste: #0C9CBC;
  --sfondo-arancione: #ED6315;
  --sfondo-dark: #05091A;
  --testo: #b8cdd8ff;
}

body {
  font-family: 'Raleway', sans-serif;
}

/* HEADER */
.header-bg {
  background-color: var(--sfondo-dark);
}

/* Link menu */
.section {
  color: var(--testo);
  font-weight: 700;
  padding: 8px 14px !important;
  transition: 0.2s ease;
}

.section:hover {
  color: #fff;
  background: var(--sfondo-testo-celeste);
  border-radius: 10px;
}

.section:focus {
  color: var(--testo-celeste);
  background: var(--sfondo-testo-celeste) !important;
  border-radius: 10px;
}

/* Bottone */
.btn-orange {
  border-radius: 10px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #F87215 0%, #EB590C 100%);
  border: none;
  padding: 8px 18px;
  transition: 0.2s ease;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #f57316ff 0%, #dd550cff 100%);
}

/* Pallino notifiche */
.notifica-pallino {
  position: absolute;
  top: 5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
}