@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');


html,
body {
    height: 100%;
}

/* 
TYPOGRAPHY 
*/

h1, 
h2,
h3,
h4,
h5 {
    font-family: 'Open Sans', sans-serif;
    color: rgb(59, 89, 152);
}
    
p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #303030;
}

@media(min-width:800px) {
    .rwd-break { 
        display: none; 
    }
}

/*
BUTTONS
*/

.btn-primary {
    background: rgb(59, 89, 152);
    border:none;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    background-color: rgb(50, 75, 129);
    border:none;
}

/* 
A HREF
*/

a,
a:hover,
a:focus {
    color: rgb(59, 89, 152);
    text-decoration: none;
}

/* 
MASTHEAD
*/
.masthead {
  margin-bottom: 2rem;
}

