#CanvasDiv {
    position: relative; /* Ensure proper positioning context */
    width: 100%; /* Set the desired width for the container div */
    height: 100%; /* Set the desired height for the container div */
}

#dotCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure canvas is behind other content */
}

#canText {
    position: relative; /* Position text relative to container */
    z-index: 1; /* Ensure text is above canvas */
}




body {
  margin: 0;
  background-color: #888;
  /*overflow: hidden;*/
}

.link {
  transition: stroke-opacity 0.1s ease-in-out;
}

.liner {
     display: flex;
     align-items: flex-start;
     text-align: left;
}
 .liner:after {
     content: '';
     flex-grow: 1;
     height: 1px;
     background: #d66853;
     min-width: 20px;
     margin: auto;
}
 .liner:after {
     margin-left: 20px;
}
 body {
     padding: 50px;
     background-color: #11151c;
     color: #7d4e57;
     line-height: 170%;
     font-family: sans-serif;
}
 body .container {
     width: 80%;
     margin: 0 auto;
}
 body .nest {
     width: 75%;
     margin: 40px auto;
     border: solid 1px;
     padding: 20px;
}
 h1, h2, h3 {
     color: #d66853;
}
 button {
     border-radius: 5px;
     height: 35px;
     border: 0;
     padding: 0 10px;
     background-color: #d66853;
     color: #7d1115 1C 4E 57;
}
 

 @import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600');

.nav {
  font-family: 'Titillium Web';
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.nav * {
  box-sizing: border-box;
  transition: all .35s ease;
}

.nav li {
  display: inline-block;
  list-style: outside none none;
  margin: .5em 1em;
  paddin: 0;
}

.nav a {
  padding: .5em .8em;
  color: rgba(255,255,255,.5);
  position: relative;
  text-decoration: none;
  font-size: 20px;
}

.nav a::before,
.nav a::after {
  content: '';
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all .35s ease;
  opacity: 0;
}

.nav a::before {
  content: '';
  right: 0;
  top: 0;
  border-top: 3px solid #d66853;
  border-right: 3px solid #7d4e57;
  transform: translate(-100%, 50%);
}

.nav a:after {
  content: '';
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #7d4e57;
  border-left: 3px solid #d66853;
  transform: translate(100%, -50%)
}

.nav a:hover:before,
.nav a:hover:after{
  transform: translate(0,0);
  opacity: 1;
}

.nav a:hover {
  color: #E49E90;
}
