

body {
  font-family: Georgia;
  padding: 20px;
  background: #f1f1f1;
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

 h2,h4 {
  text-shadow: 2px 2px 5px black, 1px 1px 25px black, 0px 0px 10px black;
}

.teahouse {
  display: block;
   /* Image takes up 50% of the viewport width */
  width:auto;
  height: auto;
  z-index:9;
  text-align: center;
  margin: auto;
  max-width: 100%;
}
.allium {
  display: block;
   /* Image takes up 50% of the viewport width */
  width:auto;
  height: auto;
  z-index:9;
  text-align: center;
  margin: auto;
  max-width: 100%;
  max-height: 250px;
  border: 1px solid black;
  transform: skew(15deg,10deg);
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  color: white; 
  background: beige;
  background-size: cover;
  background-image: url(/bgbw.jpg);
  box-sizing: border-box;
  
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
  float: left;
  width: 75%;
  box-sizing: border-box;

}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
  box-sizing: border-box;
}

/* Fake image */

.fakeimg {
  background-color: #aaa;
  color: black;
  width: 100%;
  padding: 20px 10px;
  line-height: 20px;
  box-sizing: border-box;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  box-sizing: border-box;
  background-size: cover;
  background-image: url(/bgbw2.jpg);
}
.card2 {
  background-color: beige;
  padding: 20px;
  margin-top: 20px;
  box-sizing: border-box;
  background-size: cover;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  box-sizing: border-box;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
  box-sizing: border-box;
  background-size: cover;
  background-image: url(/bgbw7.jpg);
}

/* 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;
    box-sizing: border-box;
  }
}