/* Estilos globais aplicados a todas as páginas do site */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;

  cursor: url('../images/cursorflortorto.png'), auto;

  background:
    linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255,0.15)),
    url('../images/fundo-flores.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

a, button {
  cursor: url('../images/cursorflorreto.png'), pointer;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
