* {
  margin: 0;
  padding: 0;
}


html,
body {
  /* overflow-x: hidden; */
  font-family:Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  user-select: none;
  font-size: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: white;
  overflow-x: hidden;
  pointer-events: all;
  user-select: text;

}

.site-bounds {
  max-width: 1100px;
  padding-left: 13.5px;
  padding-right: 13.5px;
  margin: 0 auto;
}
.canvas-container {
  width: 500px;
  height: 450px;
  margin: 0;
  padding: 0;
  position: relative;
  pointer-events: none;
}
#canvas {
  width: 600px;
  height: 500px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 80%; */
  
}

.header {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content:space-between;
}

.header-container {
  display: flex;
  width: 80vw;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.header .nav-container ul {
  display: inline-flex;
  flex-direction: row;
  list-style: none;
  gap: 1rem;
} 

.logo {
  width: 200px;
  height: 75px;
}

.header .nav-container ul li {
  font-size: 20px;
  padding: 10px 30px;
  color: black;
}

h1 {
  font-size: 30px;
  margin-bottom: 25px;
  color: red;
}

p {
  font-size: 16px;
}

section.view-1 {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 95px;
  /* height: 100vh; */
}

.view-2, .view-3, .view-4 {
  z-index: 1;
  display: flex;
  width: 100%;
  padding: 0 0 20px 0;
  /* max-width: 300px; */
}

.hero-container {
  /* left: 350px;
  top: 120px; */
  margin: 0px;
  max-width: 450px;
  width: 450px;
  max-height: 340px;
  height: 340px;
  padding: 0px;
  box-sizing: border-box;
  /* position: absolute; */
  display: flex;
  flex-direction: column;
  align-items: start;
}

.three-col-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.view-5, .view-6, .view-7 {
  margin-top: 100px;
}

@media screen and (max-width: 901px) {
  .view-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .view-1 .hero-container {
    justify-content: flex-start;
    max-height: 250px;
  }
}

/*# sourceMappingURL=main.css.map*/