

html { 
    scroll-behavior: smooth; 
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Inter;
    color: #129192;
}

body {  
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

canvas {
      position:absolute;
      left:0;
      top:0;
      z-index:-1;
      display: block;
      background-color: #01575f;
}

.button {
  background-color: #129192; /* Green */
  color: white;

}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
}


/* CSS */
:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}