:root {
  --nav-height: 64px;
}

* {
  box-sizing: border-box;
}

.scroll-target {
  scroll-margin-top: 64px;
}

/* Don't add height: 100% otherwise breaks top nav scrolling */
html, body {
  width: 100%; 
  margin: 0;
  padding: 0;
  /*Somehow breaks position: sticky; overflow-x: hidden;*/
  scroll-behavior: smooth;
  overflow-y: visible;
  
}

body {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 100%;
}

h1 {
  width: 100%;
  text-align: center;
}

a {
  color: rgb(224, 208, 56);
}

button {
  margin: 50px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  background-color: green;
  color: white;
  border: 2px solid white;
  font-size: 18px;
}

section {
  margin: 0px;
  padding: 0px;
}
/* Container themes */

/* Colours */