
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Didact+Gothic:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Gugi:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700');

html, body {
  margin: 0;
  height: 100%;
  width: 100%;
}

body { 
    /* background-image: url(../pics/knitted-texture.jpg);
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top left;
    background-size: auto; */
    background-color: white;
    color: #333;
}

h1 {
    font-family: 'Lato';
    text-transform: none;
    font-size: 3rem;
    font-weight: 400;
    color: black;
    margin: 0 0 25px 0;
}

h2 {
    font-weight: 400;
    font-size: 2.5rem;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 20px 0;
}

h3 {
    font-weight: 300;
    font-size: 2.0rem;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 15px 0;
}

p {
    font-family:'Montserrat';
    font-size: 1.25rem;
    text-indent: 0px;
}

img {
    max-width: 100%;
}

.top-bar {
    background-color: #3f6bf1;
    padding: 10px 0 10px 20px;
    height: 50px;
}

.top-bar a {
    font-weight: 400;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.selected a {
    color: #999;
}

.header-links {
    list-style: none;
    float: right;
}

.header-links li {
    display: inline;
    margin-right: 50px;
}

.row {
    padding: 15px 35px;
    display: flex;
    background-color: rgba(250, 250, 250, .85);
    width: 75%;
    min-width: 900px;
    margin: 0 auto;
}

.col-5 {
    flex: 5%;
}

.col-15 {
    flex: 15%;
}

.col-25 {
    flex: 25%;
}

.col-50 {
    flex: 50%;
}

.col-70 {
    flex: 70%;
}


.col-75 {
    flex: 75%;
}

.col-95 {
    flex: 95%;
}

.col-full {
    flex: 100%;
}

.center-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}