
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; 
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-main);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: var(--body-base-font-size);

  
  display: flex;
  flex-direction: column;
}

ul, ol {
  list-style: none;
}

main {
  padding-top: 100px; 
  flex: 1; 
}

body.no-scroll {
  overflow: hidden;
}