* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  font-family: Arial, sans-serif;
  overflow-x: clip;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: url('../img/background/aranha.png') center/cover no-repeat;
  opacity: 0.65;
  z-index: -1;
  pointer-events: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}