html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("photos/woodGrain_vignette.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.parallax {
  /* The image used */
  background-image: url("photos/woodGrain.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

#logo {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.whiteLogo {
    fill: white;
}

#icons {
    width: 70%;
    display: flex;
    justify-content: center;
    margin-top: 5%;
    align-content: center;
    align-items: center;
}

.email {
    width: 30%;
}

.phone {
    width: 175px;
    height: 30px;
    margin: 0;
    display: flex;
    align-content: center;
    align-items: center;
}

.instagram {
    width: 40px;
}

.instagram, .email {
    margin-left: 20px;
    margin-right: 20px;
}

/* The following is responsive sizing */

@media (max-width: 850px) {
    #icons {
        margin-top: 10%;
    }

    .email {
    width: 50%;
}

    #logo {
        width: 60%;
    }
}

/* The following 3 affects parallax scroll*/
  .forefront-element {
    -webkit-transform: translateZ(999px) scale(.7);
    transform: translateZ(999px) scale(.7);
    z-index: 1;
  }

  .base-element {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 4;
  }

  .background-element {
    -webkit-transform: translateZ(-999px) scale(2);
    transform: translateZ(-999px) scale(2);
    z-index: 3;
  }

  /* This is for the js particle effect */
  canvas {
  border: 1px soild black;
}