* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --glass-blur: blur(8px);
}

body {
  font-family: "Quicksand", sans-serif;
  margin: unset;
  background-color: #fcfcfc; /* Slight off-white to make glass pop */
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
p {
  all: unset;
  display: block;
}
ul,
li {
  all: unset;
}

@media screen and (min-width: 992px) {
  #main-content {
    margin-left: 300px;
  }
}
