html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 200;
  color: #101213;
  font-size: 16px;
  line-height: 30px;
  display: flex;
  flex-direction: column;
}

.topbar
{
    background-color: #0D9CAC;
    padding-top: 4.4rem;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus
{
    border: 2px solid #00ADDA !important;
    box-shadow: none !important;
}

.Heading1 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 900;
    font-size: 38px;
    line-height: 40px;
    color: #0C2F45;
    margin: 0px;
}

.Heading2 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 36px;
    color: #00ADDA;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.LinkButton {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    color: #FFF;
    background-color: #0C2F45;
    display: block;
    line-height: 70px;
    text-align: center;
    font-size: 28px;
    text-decoration: none;
    width: 350px;
    overflow: hidden;
    padding: 0px 20px 0px 20px;
    border-radius: 30px 0px 15px 0px;
    border: 0px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.LinkButton:hover {
	color: #00ADDA;
}

@media screen and (max-width: 400px) {
	.LinkButton {
		line-height: 70px;
		font-size: 20px;
		width: 250px;
	}
}

.footer {
    background-color: #0C2F45;
    text-align: center;
    padding: 10px 0; /* keeps it small */
    margin-top: auto; /* sticks footer to bottom */
}

.footer p {
    font-size: 14px;
    line-height: 1.6rem;
    margin: 0;
}

.footer a {
    font-size: 14px;
    text-decoration: none;
    color: white;
}

.submitbutton {
    color: #FFF;
    background-color: #0C2F45;
    line-height: 50px;
    font-size: 25px;
    padding: 0px 25px 0px 25px;
}

.submitbutton:hover {
    background-color: #334551;
    color: #fff;
}