/* CCS for Pill Navigation */

nav{
	text-align: center;
}

.pill-nav a {
  display: inline-block;
  background-color: gray;
  color: black;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  font-size: 24px;
  border-radius: 8px;
}

.pill-nav a:hover {
  background-color: #ddd;
  color: black;
}

.pill-nav a.active {
  background-color: dodgerblue;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}


header {
  background-color: black;
  color: white;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
  box-sizing: border-box;
}


/* Style for the footer specifies font size, text alignment, and top margin */
footer {
    font-size: .70em;
    text-align: center;
    margin-top: 1em;
	padding: 20px;
	background: #ddd;
}

* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  font-family: Arial;
  padding: 20px;
  background: #f1f1f1;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Right column */
.rightcolumn1 {
  float: right;
  width: 25%;
  padding-right: 20px;
}

/* Three columns */
/* Left column */
.column1 {   
  float: left;
  width: 33%;
}

/* Middle Column */
.column4 {   
  float: left;
  width: 15%;
}

/* Right column */
.column2 {
  float: left;
  width: 36%;
  padding-left: 20px;
}

/* Two column format /
/* Right column */
.column3 {
  float: left;
  width: 75%;
  padding-left: 20px;
}


/* Fake image */
.fakeimg {
  background-color: #eee;
  width: 100%;
  padding: 20px;
}

/* Yellow image */
.yellowimg {
  background-color: yellow;
  width: 100%;
  padding: 20px;
}

/* Lime Green image */
.limegreenimg {
  background-color: lime;
  width: 100%;
  padding: 20px;
}

* Initialization images */
.blueimg{
 background-color: #eef;
  width: 100%;
  padding: 20px;
}


.initimg2{
 background-color: green;
  width: 100%;
  padding: 20px;
}

.initimg3{
 background-color: red;
  width: 100%;
  padding: 20px;
}


/* Rotate 180 image */
.rotateimage180 {
  -webkit-transform:rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Roate Image 90 degrees */
.rotateimage90 {
  -webkit-transform:rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}


/* Add a card effect for articles */
.card {
   background-color: white;
   padding: 20px;
   margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

@media screen and (max-width: 1300px) {
  .column3 {
    width: 100%;
  }
   .column4 {
    width: 0%;
  }
}
