* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  list-style: none;
  font-family: "Helvetica";
  -ms-overflow-style: none;  
  scrollbar-width: none;
}
*::-webkit-scrollbar {
  display: none;
}
iframe {
  border: none;
}
img {
  pointer-events: none;
}
a {
  color: #FF0;
}
a:hover {
  color: #A6F;
}

/* p5JS */
.p5iframe{
  width: 100%;
  height: 100%;
}

/* Main */
.navbutton > img {
  width: 100%;
  height: 100%;
  padding: 10px;
}

body {
  display: flex;
  background: #ddd;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

h1 {
  font-size: 4em;
  margin: 0.2em 0;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
}


._body {
  overflow: scroll;
  display: block;
  padding: 1em 1.5em;
  width: calc(100%);
  height: calc(100% - 2em);
}

/* Navigation bar */
.navbar {
  position: absolute;
  height: 100%;
  width: auto;
  right: 0;
  margin: 20px;
  display: flex;
  flex-wrap: wrap-reverse;
  flex-direction: column;
  gap: 60px;
}
.exitbutton {
  position: absolute;
  left: 0; bottom: 0;
  margin: 20px;
  width: 75px; height: 75px;
}
.navbutton {
  width: 75px;
  height: 75px;
  border-radius: 10px;
}
.navbutton:hover {
  background: rgb(240, 240, 240);
  border-radius: 12px;
}
.navbutton > p {
  text-align: center;
  /* margin-top: 80px; */
}
.navbutton > img {
  position:static;
}
.windows {
  position: absolute;
  min-width: 100px;
  min-height: 50px;
  height: 400px; width: 600px;
  border-radius: 10px;
  overflow: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.jujube {
  display: none;
  background: rgb(197, 153, 255);
  top: 50px;
  left: 300px;
  height: 500px; width: 450px;
}
.design {
  display: none;
  background: rgb(253, 255, 137);
  top: 300px;
  left: 350px;
  height: 500px; width: 450px;
}
.intangible {
  display: none;
  background: rgb(255, 153, 240);
  top: 200px;
  left: 400px;
  height: 500px; width: 600px;
}
.intangible a {
  font-family: 'Times New Roman', Times, serif;
}
.newtablink {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.newtabicon {
  fill: none;
  stroke: #FF0;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 17px;
  width: 2em; height: 2em;
}
.newtabicon:hover {
  stroke: #A5F;
}
.intangible .iimg {
  width: 100%;
}
.orange {
  display: none;
  background: whitesmoke;
  top: 100px;
  left: 200px;
}
.purple {
  display: none;
  background: #99F;
  top: 200px;
  left: 100px;
  height: 500px; width: 450px;
}
.wcontact {
  display: none;
  background: rgb(119, 142, 255);
  top: 100px;
  right: 200px;
  height: 400px; width: 300px;
}
.wwaves {
  display: none;
  background: rgb(140, 140, 140);
  top: 150px;
  left: 100px;
  height: 500px; width: 700px;
}
.wwaves > iframe {
  pointer-events: none;
}

.windows:hover {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  border-radius: 8px;
}
.resizer {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 6px;
  background-color: black;
}
.resizer.close {
  top: 8px;
  left: 8px;
  cursor: crosshair;
}

.resizer.jusw, .desw, .insw, .ursw, .resizer.orsw, .resizer.cosw, .resizer.wasw {
  bottom: 8px;
  left: 8px;
  cursor: sw-resize;
}
.resizer.juse, .dese, .inse, .urse, .resizer.orse, .resizer.cose, .resizer.wase {
  bottom: 8px;
  right: 8px;
  cursor: se-resize;
}