/* Remove default margins/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow: hidden; /* Disable scrolling */
  height: 100%;
  background: #000;
}

/* Background website iframe */
#background-site {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: 1;
  overflow: hidden; /* Disable scrolling in iframe */
  pointer-events: none; /* Disable all interactions with iframe */
}

/* P5.js canvas container */
main {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: auto; /* Enable interactions for camera page */
}

#p5-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
