:root {
  --blue: #007bff;
  --dark-blue: #0056b3;
  --light-gray: #f0f2f5;
  --white: #ffffff;
  --text: #333;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--bg);
  color: var(--text);
}


body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.section-fill {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

section {
  min-height: 100vh;
  scroll-snap-align: start;
}

body,
html {
  font-family: 'Sarabun', 'Montserrat', sans-serif;
}