* {
  box-sizing: border-box;
}

body {
 	font-family: "Georgia" "Times New Roman", Times, serif;
  padding: 1px;
	background-image: url(dark-storm-clouds.jpg);
}
  
.content {
	max-width: 1400px;
	margin: auto;
 	background: lightblue;
	padding: 4px;
}

 img {
   width: 100%;
   height: auto;
 }
 
/* Header/Blog Title */
.header {
  padding: 10px;
  text-align: center;
  background: lightblue;
}

.header h1 {
  font-size: 48px;
	border-radius: 10px;
}

.header h2 {
  font-size: 24px;
	border-style: solid;
	border-width: medium;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #63b4cf;
	border-radius: 1px;
	border-style: solid;
	border-width: thin;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
	border-radius: 5px;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #b1dae7;
  color: blue;
}

.active {
  background-color: dodgerblue;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
	padding: 2px;
	border-left: 10px;
	background-color: ivory;
}

/* Right column */
.rightcolumn {
  float: right;
  width: 25%;
	padding: 2px;
  border-right: 10px;
  background-color: ivory;
}

/* image stays in container */
.clearfix {
  overflow: auto;
  content: "";
  display: table;
  clear: both;
}

/* image float right*/
.imgright {
	float: right;
  width: 100%;
  height: auto:
}

/* image float left */
.imgleft {
  float: left;
  width: 100%;
  height: auto;
}

/* Add a card effect for articles */
.card {
  padding: 20px;
  margin-top: 1px;
	overflow:auto;
 	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card2 {
  background-color: #8ac7db;
  padding: 20px;
  margin-top: 1px;
	overflow:auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 5px;
  border-style: solid;
	border-width: thin;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 33%;
}

/* Content */
.content {
  background-color: navyblue;
  padding: 10px;
}

/* Clear floats after the rows or columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Form */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Footer */
.footer {
  padding: 4px;
  text-align: center;
  background: lightblue;
  margin-top: 2px;
	max-width: 1400px;
	border-radius: 5px;
	border-style: solid;
	border-width: thin;
  font-size: 16px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 900px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
  .column {
    width: 50%;
    padding: 0;
  }
  .topnav a {
    padding: 6px 8px;
    text-decoration: none;
	  border-radius: 3px;
  }
	.header {
    padding: 8px;
    text-align: center;
    background: lightblue;
  }
	.header h1 {
	  font-size: 36px;
		border-radius: 8px;
	}
  .footer {
    padding: 4px;
    margin-top: 2px;
	  border-radius: 2px;
    font-size: 14px;
  }
}

/* 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: 600px) {
  .topnav a {
    float: none;
    width: 100%;
  }
  .column {
    width: 100%;
  }
  .topnav a {
    padding: 3px 5px;
    text-decoration: none;
	  border-radius: 1px;
  }
	.header {
    padding: 5px;
    text-align: center;
    background: lightblue;
  }
	.header h1 {
	  font-size: 24px;
		border-radius: 5px;
	  }
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  .footer {
    padding: 2px;
    margin-top: 2px;
	  border-radius: 2px;
    font-size: 12px;
  }
}
