img#banner {
  width: 100%;
}
h1.logotitle  {
  font-size: 3.5vw;
  text-align: center;
  color: white;
  text-shadow: 0 0 15px #ff0000, 2px 2px 25px #0000ff;
  margin-top: -1em; /* moves the text over the img logo */
  margin-bottom: -0.75rem;
}
img.sidepic {
  float: right; 
  height: 25vw;
  min-height: 200px;
  max-height: 400px;
  padding-left: 20px;
  padding-right: 20px;
}
.underlined {
  text-decoration: underline;
}

img.about-left {
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}
img.about-right {
  float: right;
  padding-left: 20px;
  padding-right: 20px;
}

span#greeting {
  float: right;
  padding: 8px;
  color: white;
  font-weight: bold;
}

.kitsSoldFooter {
  padding-top: 20px;
  text-align: center;
}

p {
  text-align: justify;
}

/* Default values for hero class is a single column */
.hero {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  -o-column-count: 1;
  column-count: 1;
  background: #402040;
  color: #ffffff;
  padding: 1em;
  margin: 0;
}
.hero a { /* Links are yellow by default */
  color: #ffff00;
}
.hero a:hover { /* But turn bluey if you hover on them */
  color: #8080ff;
}

/* override styles for devices with 481px to 1024px */
@media only screen and (min-width: 480px)
{
  .homepage {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -o-column-count: 2;
    column-count: 2;
  }
}

/* Styles for devices with screen widths of 1024px or greater */
@media only screen and (min-width: 1024px) 
{
  .homepage {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
  }
}

footer {
  margin-top: 20px; /* Leave a bit of space between the end of content and the footer */
  text-align: center; /* Always looks nicer */
  width: 100%;
  background: #c0ffc0;
  color: black;
  border: 2px solid black;
}

/*
  This is a very simple navigation menu.  It formats the <ul> with class of "navmenu" so that the <li>
  nodes are laid out horizontally on a gradient background.  When the mouse is over one of the <li>
  blocks, the colors are changed to indicate it.  Clicking on the link navigates to the page.

  This could be enhanced with hidden/shown bits and javascript and animations and such but for such a 
  simple navication this seemed adequate.
*/
ul.navmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: #330439;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(102,9,121,1) 100%);
  overflow: hidden;
}
ul.navmenu li {
  float: left;
}
ul.navmenu li a {
  display: block;
  padding: 8px;
  color: #ffff00;
  border-right: 1px solid white;
}
ul.navmenu li a:hover {
  background: #404040;
  color: #ffffff;
}

form {
  display: flex;
  flex-direction: row;
}

textarea {
  width: 33vw;
}

div.fieldset {
  border: solid #000000 thin;
  width: 500px;
  background-color: #ffffb0;
  float: left;
}
div.fieldsetSpace {
  width: 50px;
  float: left;
}
textarea#instructions { width: 300px; }
fieldset { border: none; margin: 0 0 0 -10px; padding: 10px 0 10px 0; margin: 0; height: 100%; }
legend { font-size: 20px; background: #303080; color: #ffffff; width: 490px; padding: 5px; }
fieldset p { clear: both; margin: 0; padding: 2px; }
label.order { color: #000000; text-align: right; width: 150px; float: left; font-weight: bold; padding-right: 5px; }
label.order span, .required { color: #ff0000; }
input.textbox-300 { width: 300px; float: left; }
form > section {
  display: flex;
}
form p { 
  color: #000000;
}