* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #73a478;
  --primary-dark: #618665;
  --secondary-color: #b229b9;
  --error-color: #e74c3c;
  --warning-color: #d35400;
  --info-color: #b8860b;
  --text-dark: #2c3e50;
  --text-light: #697474;
  --bg-light: #ecf0f1;
  --white: #ffffff;
  --border-radius: 8px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
  min-height: 100%;
}

body {
  font-family: Montserrat, sans-serif;
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-dark);
  line-height: 1.6;
}

.overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.overlay-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  mix-blend-mode: multiply;
}

.img-overlay {
  position: absolute;
  object-fit: cover;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(3px);
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

main {
  flex: 1;
}

