h2 {
	text-align: center;
}


/* grid system css starting */
*{
  box-sizing: border-box;
}

.row {
  height: auto;
}


.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 10px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}


/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

/* grid system css ending */


.button {
    background-color:  #333333;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
.button:hover {background-color: #3e8e41}
.special{
  text-align: center;
}


/* CSS: body class */
body {
	background-color: lightblue;
}

/* CSS for page logo */
.logo {
	border: 1px solid black;
	background-color: white;
	padding-top: 50px;
	padding-right: 30px;
	padding-bottom: 50px;
	padding-left: 80px;
	position: relative;
}

/* CSS for logo and website title */
.logo_container	{
	position: absolute;
	top: 10px;
	left:50px;
}

/* all h1 headings will use this CSS */
h1.sansserif {
	font-family: "Times New Roman", Times, serif;
	font-size: 38pt;
	text-align: center;
}

/* CSS for navigations bar */

.navigation nav {
  display: flex;
  justify-content: center;
  background-color: #333333;
}

dl {
  display: flex;
  flex-flow: row wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
}

dt a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  border-bottom: none;
}

dt a:hover {
  background-color: #111111
}
/* Navigation bar CSS ends */


/* CSS for footer */
.footer{
	position: relative;
	float: bottom;
	align: center;
	padding-left: 20px;
}

/* about me CSS */
.about_me {
	position: relative;
	text-align: center;
}
.about_me me {
	position: absolute;
	margin: 0 10px 10px 10px;
}

.about_me about {
	position: absolute;
	left: 220px;
}