
@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/hexellence.png);
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top left;
    background-size: auto;
    /* background-color: white; */
    color: #333;
}

h1 {
    font-family: 'Lato';
    /* line-height: 1.5em; */
    text-transform: none;
    font-size: 3rem;
    font-weight: 400;
    color: black;
}

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

h3 {
    font-weight: 300;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

p {
    font-family:'Montserrat';
    text-indent: 25px;
}

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

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

.selected a {
    color: white;
}

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

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

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

.col-5 {
    flex: 5%;
}

.col-15 {
    flex: 15%;
}

.col-25 {
    flex: 25%;
}

.col {
    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;
}