#particles canvas{
    position: fixed;
    background-color: #000000;
    width: 100%;
    height: 100%;
    z-index: -1;
}

 /* Add a black background color to the top navigation */
.topnav {
  overflow: hidden;
  position: relative;
}

/* Style the links inside the navigation bar */
.topnav a {
  background-color: #000;
  float: left;
  display: block;
  color: #c2c2c2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 19px;
  font-weight: bold;
}

a.cassy {
  color: #000;
  float: left;
  display: block;
  background-color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 19px;
  font-weight: bold;
}



/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  p.smallText {
    font-size: 12px;
  }
  p.midText {
    font-size: 17px;
  }
  p.bigText {
    font-size: 22px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1000px) {
  p.smallText {
    font-size: 17px;
  }
  p.midText {
    font-size: 25px;
  }
  p.bigText {
    font-size: 40px;
  }
}

@media screen and (min-width: 1001px) {
  p.smallText {
    font-size: 20px;
  }
  p.midText {
    font-size: 30px;
  }
  p.bigText {
    font-size: 45px;
  }
}

p {
  font-family: Sans-serif;
  font-weight: bold;
  color: #c2c2c2;
}

p.description {
  font-family: Sans-serif;
  font-weight: normal;
  color: #c2c2c2;
}

p.title {
  font-family: Sans-serif;
  font-weight: normal;
  color: #c2c2c2;
}

div.listing {
  font-family: Sans-serif;
  font-weight: normal;
  color: #c2c2c2;
  background-color:#343434;
  border: double;
  border-radius: 15px;
  padding: 35px;
}

aside {
    background: #4CAF50; /* same color as selected state on site menu */
    padding: 0.3em 1em;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 2em;
}
textarea {
  width: 75%;
}
label {
        color: white;
}
.content-head {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 2em 0 1em;
}
.button-success {
  color: white;
  border-radius: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  background: rgb(28, 184, 65); /* this is a green */
}
.button-xlarge {
  font-size: 125%;
}
button {
  float: left;
}
#name, #email {
  width: 50%;
}
#honeypot {
  display: none; /*makes the field not visible to humans*/
}

