<style>

a:link    {color: #6190E8}
a:visited {color: #6190E8}
a:focus   {color: #6190E8}
a:hover   {color: #DB5E5E}
a:active  {color: #DB5E5E}



.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: #DB5E5E;
  text-decoration: none;
cursor: pointer;
}



.logo {
  width: 80%;
  max-width: 500px;
  height: auto;
}
.logo2 {
  max-width: 150px;
  height: auto;
}

.pic {
  width: 100%;
  max-width: 800px;
  height: auto;
}
* {
  box-sizing: border-box;
}

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

/* Header/logo Title */
.header {
  padding: 25px;
  text-align: center;
  background: #111111;
  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: #DB5E5E;
  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-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.textbox {
  background-color: #ddd;
  width: 100%;
  padding: 20px;
  text-align: center;

}



/* 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: #DB5E5E;
	background: #333;
}

/* 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>