/* General setup - Copy/Pasted from example*/

html {
	margin: 5px;
}

body {
    margin: 1em;
	font-size: 3vw;
	font-family: 'Cambo', sans-serif;
}

h1, h2 {
    text-align: left;
    margin: 1em;
    font-size: 2vw;
    display: inline-block;
}

.title {
    text-align: center;
    margin: 1em;
    font-size: 4vw;
}

.banner {
    float:right;
}

div {
    text-align: center; /* Misnomer - Aligns block elements */
    margin: auto;
    width: 70vw;
    display: block;
}

input {
    display: inline-block; /* Allows blocks to show up in same line */
    margin: auto;
    font-size: 50%;
    font-family: 'Cambo', sans-serif;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

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

a:active {
  text-decoration: underline solid;
}