* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  font-family: 'Annie Use Your Telescope';
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.1;
  padding: 20px;
  background: #3C669B;
}


/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background: #BCDBDE;
}

.title {
  font-size: 60px;
}

.subtitle {
  font-size: 18px;
  margin-top: -30px;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
  max-height: 4000px;
  overflow: auto;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

.nocolumn {   
  margin-left: 12.5%; 
  width: 75%;
}
.nocolumn2 {   
  width: 100%;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: white;
   padding: 20px;
   margin-top: 20px;
   max-height: 600px;
   overflow: auto;
}

.card2 {
   background-color: white;
   padding-top: 10px;
   padding-left: 50px;
   padding-right: 50px;
   padding-bottom: 20px;
   margin-top: 20px;
   max-height: 4000px;
   overflow: auto;
}

.blockquote {
  text-align: justify;
  font-style: oblique;
  padding-left: 100px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #BCDBDE;
  margin-top: 20px;
}

/* 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: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

nav{
  z-index: 99;
  background: #BCDBDE;
  padding: 6px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navlink{
  background-color: #80B5C3;
  display: block;
  width: 300px;
  height: 50px;
  padding: 13px;
  margin: 0px 5px 8px;
  text-align: center;
  font-size: 20px;
}

.navlink a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.navlink a:hover {
  text-decoration: underline;
}