/* This file contains universal css that is a
pplied to all pages changing default styling */
html, body {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    overflow-x: hidden;
    user-select: none;
    scroll-behavior: smooth;
}

inner { 
  overflow: hidden;
}

#about {
  scroll-margin-top: 20vh; /* Adjust this value as needed */
}

#services {
  scroll-margin-top: 10vh; /* Adjust this value as needed */
}

@font-face {
  font-family: "Toasty Milk";
  src: url("../../../static/fonts/ToastyMilk.otf");
}
