<style>

a:link    {color: #042F1B !important;}
a:visited {color: #042F1B;}
a:focus   {color: #042F1B;}
a:hover   {color: #B1C27C;}
a:active  {color: #B1C27C;}



.butn {
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 10px;
  color: #000000;
  font-size: 14px;
font-weight: bold;
 font-family: Arial, Helvetica, sans-serif;
  background: #DDDDDD;
  padding: 10px 20px 10px 20px;
  border: solid #000000 2px;
  text-decoration: none;
}

.butn:hover {
  background: #6190E8;
  text-decoration: none;
cursor: pointer;
}








.logo {
  width: 100%;
  max-width: 200px;
  max-height: auto;
}

.logo2 {
  width: 100%;
  max-width: 120px;
  max-height: auto;
}



* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
 background-color: #042F1B; 
font-size: 18px;
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 30px;
  text-align: right;
  background: #042F1B;
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-weight: bold;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #6190E8;
  color: black;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background: linear-gradient(135deg,  rgba(254,254,253,1) 0%,rgba(220,227,196,1) 42%,rgba(174,191,118,1) 100%);
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background: linear-gradient(45deg,  rgba(254,254,253,1) 0%,rgba(220,227,196,1) 42%,rgba(174,191,118,1) 100%);
  padding: 20px;
}


/* Fake image, just for this example */
.textbox {
  background: linear-gradient(45deg,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size:18px;
  font-weight: bold
}



/* Column container */
.row2 {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}


.small_box {   
  -ms-flex: 40%; /* IE10 */
  flex: 40%;
}

.space {   
   padding: 10px;
}




/* Footer */
.footer {
  padding: 20px;
  text-align: center;
	color: #F6FAF2;
	background: #042F1B;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}
  </style>