
* {
  /* font-family: "Lucida Console", "Courier New", monospace; */
  font-family: Arial, sans-serif;
}

body 
{
  margin: 0;
  padding: 0;
  width: 100%; /* full window width */
  

}

.redtext {
  color: red;
}

.greentext {
  color: limegreen;
}

#floatleft  {
  float: left;    
   margin: 0 15px 0 0;
  }


  .biggertext {
    font-size: 125%;
  }

ul {
  /* removes default bullet points */
  list-style-type: none;

}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8f9fa;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #e9ecef;
}

footer p {
  margin: 1px;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


a:hover {
  /* color shown when user hovers on a link */
  color: #d36b00;
}

.main {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
}

.main-container {
  /* main container that encompasses all of the categories */
  width: 80%;
  display: flex;
  justify-content: left;
  z-index: 1; /* displays text above the image, if they ever overlap */
}

.link-container {
  /* container used by each individual category */
  margin: 0 26px;
}


