html {
    background: #FAF9F6;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {

    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 1920px;

}


.header {
  text-align: center;
  padding: 32px;
}


h2 {
	color:RED;
	font-size: 55px;
	font-weight: normal;
	letter-spacing: -3px;
	line-height: 45px;
	text-decoration: none;
	text-transform: uppercase;
	margin: 0;
    padding: 0;
	font-family: 'Francois One', Arial, sans-serif;
	text-align: left;
}

h1 {
    color: #152fbf;
    font-weight: 600;
    line-height: 1.3;
}



ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
	overflow; hidden;
    width: 200px;
    background-color: #f1f1f1;

}

span {
   font-size: 30px;
   display: inline;
   text-align: left;
   color: blue;}



li {

	list-style: none;
	float: left;
	color: #fff;


        }

li a {
	  letter-spacing: 0;
	  display: block;
      color: #000;
	  text-align: center;
      padding: 5;
      text-decoration: none;
	  font-family: 'Francois One',Arial,sans-serif;
	  font-size: 20px;
      letter-spacing: 0;
      line-height: 15px;
}
    li a:hover {
		       color: #gray;
               background-color: RED;
               color: white;
    }


a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}



div.desc {
    padding: 1px;
    text-align: center;
}
    


.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }

  container {
  position: relative; 
  max-width: 800px; /* Maximum width */
  margin: 0 auto; /* Center it */
}

.container img {vertical-align: middle;}

.container .content {
  position: absolute; /* Position the background text */
  bottom: 0; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1; /* Grey text */
  width: 100%; /* Full width */
  padding: 20px; /* Some padding */
}