* {
  padding: 0px;
  margin: 0px;
  transition: 0.5 s;
  font-family: arial;
  font-weight: bold;
  font-size: 3vh;
}

body {
  background-color: #ebe4d8;
}

input {
  width: 80%;
  margin-top: 10px;
  font-weight: normal;
  font-size: 3vh;
}

textarea {
  width: 80%;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 3vh;
  height: 400px;
}

video {
  border: 1px solid black;
}

/* DIV SECTIONS */

/* specific product pages */
div.row {
    text-align: center;
    font-weight: normal;
    font-size: 2vh;
}

div.middle { /* text content */
  float: left;
  width: 40%;
  margin-top: 30px;
}

div.right { /* order form */
  float: left;
  width: 25%;
  border: 1px solid black;
  padding: 10px;
  border-radius: 10px;
  background-color: white;
  margin-top: 30px;
}

div.left { /* sample video */
  float: left;
  width: 25%;
  padding: 5px;
  margin-top: 30px;

}

p.prodText {
  font-weight: normal;
  font-size: 2.5vh;
  padding: 20px;
}

div.orderMessage { /*message that displays once an order is placed */
  border: 1px solid black;
  background-color: #d62c27;
  margin: 20px;
  padding: 10px;
  font-size: 2.5vh;
  color: white;
  display: none;
}

/* contact page */

div.contactPane {
  text-align: center;
  font-weight: normal;
  font-size: 2.5vh;
  margin: 20px;
  place-items: center;
  display: grid;
}

div.contactForm {
  margin:0 auto;
  width: 50%;
  font-weight: normal;
  font-size: 2.5vh;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 30px;
}

div.userMessage { /* message that displays once contact us is sent */
  background-color: #d62c27;
  margin-top: 30px;
  border: 1px solid black;
  padding: 5px;
  color: white;
  display: none;
}

/* main page */

div.contentPane {
  text-align: center;
  display: flex;
  font-weight: normal;
  font-size: 2vh;
}

div.frontsell { /*list of products */
  flex: 50%;
}

div.project {
  border: 1px solid gray;
  background-color: white;
  font-weight: normal;
  font-size: 14pt;
  padding: 30px;
  border-radius: 30px;
  margin-top: 30px;
  margin-right: 30px;
}

div.project-bottom { /*product at the end of the list */
  border: 1px solid gray;
  background-color: white;
  font-weight: normal;
  font-size: 14pt;
  padding: 30px;
  border-radius: 30px;
  margin-top: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.fishfront {
  flex: 70%;
}

/* treasury page */

div.frontanalytics { /*analytics charts for treasury */
  flex: 50%;
  align-items: center;
  justify-content: center;
  text-align: center
  padding-left: 20px;
}

div.philoPane {
  flex: 50%;
  padding-top: 30px;
  padding-left: 100px;
  padding-right: 100px;
  font-weight: normal;
  font-size: 2.5vh;
}

/* buttons */

.clickbutton {
  background-color: #d62c27;
  border: 1px solid black;
  color: black;
  padding: 10px;
  font-size: 14pt;
  border-radius: 4px;
}

.clickbutton:hover {
  background-color: black;
  color: white;
}

/* navbar */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  background-color: #d62c27;
  color: white;
  border: 2px solid #ae3835;
}
nav .links {
  display: flex;
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: black;
}
table {
  margin-left: auto;
  margin-right: auto;
}
.links p {
  padding: 2vh;
}

#mobile-menu-btn {
  display: none;
}
.mobile-menu {
  color: white;
  display: none;
  position: absolute;
  right: 0;
  height: 300px;
  width: 100%;
  background-color: #d62c27;
}

/* stock ticker bar */

.ticker {
  background-color: black;
  width: 100%;
  text-align: center;
  font-size: 2vh;
}
.tickerText {
  color: white;
  padding-right: 1vh;
  font-size: 2vh;
}
.tickerPrice {
  color: gray;
  padding-right: 4vh;
  font-size: 2vh;
}


/* MOBILE BROWERS */

@media (max-width: 600px) {
  #mobile-menu-btn {
    display: block;
  }
  nav p {
    display: none;
  }

  input {
    width: 100%;
  }

  textarea {
    width: 100%;
  }

  video {
    width: 400px;
  }

  div.ticker {
    display: none;
  }
  div.frontsell {
    flex: none;
    width: 400px;
  }

  div.fishfront {
    display: none;
    width: 400px;
  }
  div.project {
    padding: 20px;
    margin: 20px;
  }
  div.project-bottom {
     padding: 20px;
     margin: 20px;
  }
  div.frontanalytics {
    flex: none;
    width: 90%;
    padding: 10px;
    display: none;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  div.philoPane {
    padding: 10px;
    font-weight: normal;
    font-size: 2vh;
    width: 90%;
    flex: none;
  }
  div.contentPane {
    display: grid;
    flex: none;
  }
  div.contactForm {
    width: 100%;
    margin: 10px;
    padding: 10px;
  }
  div.right {
    width: 100%;
  }
  div.middle {
    width: 100%;
  }
  div.left {
    width: 100%;
  }

}