/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 20px;
  background: #f1f1f1;
}

/* Header/Blog Title */
.header {

  padding: 30px;
  font-size: 40px;
  text-align: center;
  background-color: #4E655D;
  border: 2px solid black;
}
.header-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* 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;
}

.centercolumn {
width: 100%;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: #4E655D;
  padding: 20px;
  margin-top: 20px;
  border: 2px solid black;
  
}

.centeredcard {
  background-color: #4E655D;
  padding: 20px;
  margin-top: 20px;
  border: 2px solid black;
  text-align: center;
}

.card img {
  border: 2px solid black;
}

.centeredcard img {
  border: 2px solid black;
}

.card-tabs {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.tab-buttons {
  display: flex;
}

.tab-button {
  flex: 1;
  font-family: inherit;
  padding: 10px;
  border: 2px solid black;
  background-color: #365439;
  cursor: pointer;
}

.tab-button.active {
  background-color: #78b07d;
}

.tab-panel {
  display: none;
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.tab-panel.active {
  display: block;
}

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

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #4E655D;
  margin-top: 20px;
  border: 2px solid black;
}

.page-about {
  background-color: #8d99ae;
    font-family: 'Luxurious Roman', serif;
}

/* 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;
  }
  
}