@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
.body { 
	font-family: 'Open Sans', sans-serif !important; 
  }

.text {
    font-family: 'Open Sans', sans-serif;
    font-size: 50px;
  }
    
.header {
  width: 100%;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	align-items: center;
  justify-content: center;
  margin: auto;
}

.h2, h2 {
    font-size: 1.6rem;
    font-weight: 600;
}

.wrapper {
  padding: 0;
  margin: 0;
  flex-basis: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: small;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-basis: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  max-width: 725px;
}

.responsive-image {
  max-width: 100%;
  height: auto;
}

a:focus,
.focus a {
	outline: none !important;
}

 /* unvisited link */
 a:link {
  color: blue;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: blue;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: red;
  text-decoration: none;
}

/* selected link */
a:active {
  color: blue;
  text-decoration: none;
} 

