cboard {float:left}

bendLed{float:left}

LedTower1{
	width:300px
}



.navbar {
  width: 100%;
  background-color: #0066cc;
  overflow: auto;
}

/* Navigation links */
.navbar a {
  float: left;
  padding: 12px;
  color: black;
  text-decoration: none;
  font-size: 17px;
  width: 23%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
  text-align: center; /* If you want the text to be centered */
}

/* Add a background color on mouse-over */
.navbar a:hover {
  background-color: #83f52c;
}

/* Style the current/active link */
.navbar a.active {
  background-color:	#0000FF;
}

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
 (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left; /* If you want the text to be left-aligned on small screens */
  }
}


.content {
  max-width: 900px;
  margin: auto;
  background: 	powderblue;
  padding: 10px;
}

body {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 50px;
}

header {
    display: flex;
    align-items: center;
    background: #0066cc;
}
header h1 { 
    font-family: 'Shadows Into Light', cursive;
    font-size: 500%;
    font-weight: lighter;
    color: #0066cc;
}
nav {
    display: flex;
    background: #0a85d8;
    border-top: solid black thin;
    border-bottom: solid black thin;
    box-shadow: 0px 2px #888;
}
nav {
    display: flex;
    background: #0a85d8;
    border-top: solid black thin;
    border-bottom: solid black thin;
    box-shadow: 0px 2px #888;
}
nav {
	max-width: 500px;  
	float: none;
	display: block;
    width: 100%;
    text-align: left;
}
nav p {
    flex: 1 1 100px;
    text-align: center;

}
nav a { 
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
nav a:hover { 
    text-decoration: none;
    color: #e91e63;
    font-weight: bold;
}
div {

}
footer p {
	  text-align: center;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color:#0066cc ;
    border-top: solid black thin;
    box-shadow: 0px -2px #888;
	}
	/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
	
	
