
@charset "utf-8";

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  background-image:url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  margin: 40px;
  font-family: "Ubuntu Sans", sans-serif;
  color: #666;
  font-size: 16px;
 }

a:link {
  text-decoration: none;
  color:#2a7db5
}

a:visited {
  text-decoration: none;
  color:#2a7db5
}

a:hover {
  text-decoration: none;
  color:#F11;
}

a:active {
  text-decoration: underline;
  color:#F11;
}

.navbar {
	padding:20px 0 0 20px!important;
	} 
	
.navbar a {
font-weight:600;
padding-left:10px;
width:100%;
}


.linkright {
background-color:#e8eaed;
border-radius: 15px;
border-style:solid;
border-width:2px;
border-color:#ccc;
padding :6px;
width:20%;
text-align: center;
font-weight: 900;
float:right;

}

h1 {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: #222;
}


h2 {font-size: 20px;
	color: #666;
}

.wrapper {
	max-width: 940px;
	margin: 0 20px;
	display: grid;
	/*grid-gap: 10px;*/
}

/*.header {
padding-top:20px!important;
*/

@media screen and (min-width:500px) { 

/* no grid support? */

.wrapper .colone p {
	text-align: justify;
}

.colone img {
  border-radius: 5%;
 }
.coltwo img {
  border-radius: 5%;
}
.colone {
    float: left;
  	width: 60%;
	
  }
.coltwo {
	padding-top:50px!important;
    float: right;
  	width: 40%;
  }
  
.footcolone {
	padding-top:0px!important;
    float: left;
  	width: 50%;
	
  }
.footcoltwo {
    float: right;
  	width: 50%;
  }  
 
.content {
 padding:20px,0px,0px,20px!important;
}
  
.content hr{ 
 border-top: 1px solid #666;
 padding:0;
 margin:0;

}

.colone  {
  margin-left: 0;
  padding-left: 20;
}

ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
.colone li {
  font-size:18px;
  font-weight:600;
  padding-left: 1em;

}

.wrapper {
	margin: 0 auto;
    grid-template-columns: 2fr 1.5fr;
}
  
.header, .content, .footer, .navbar {
    grid-column: 1 / -1;
    /* needed for the floated layout */
    clear: both;
  }
}
.wrapper > * {
 background-color: #fff;
 padding: 30px;
 /* needed for the floated layout*/
 margin-bottom: 10px;
}

/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
 .wrapper > * {
 width: auto;
 margin: 0;
}
