        * {
  box-sizing: border-box;
}

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

.leftcolumn h2{
  border: solid 2px rgb(59, 4, 4);
  border-left: 0px;
  border-right: 0px;
  border-start-end-radius: 100px;
}
/* Header/Blog Title */
.header {
  font-family: Caldareth;
  padding: 30px;
  font-size: 50px;
  height: 150px;
  text-align: center;
  background: rgb(89, 2, 2);
  background-image: url("images/lace.jpg");
  background-size: contain;
  color: rgb(100, 11, 11);
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: rgb(0, 0, 0);

  h2{
    position: relative;
    bottom: 60px;
  }
}

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

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

/* Add a card effect for articles */
.card {
  background-color: rgb(106, 32, 32);
  padding: 20px;
  margin-top: 20px;

  h2{
    font-family: Metal Gothic;
  }
}
.card h5{
  font-family: consolas;
}
.card p{
  font-family: Internet;
}

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

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

.footer a{
  color: red;
  font-family: Metal Gothic;
  font-size: 30px;
}

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

@font-face {
  font-family: Caldareth;
  src: url(fonts/Caldareth.ttf);
}

@font-face {
  font-family: Modern Romance;
  src: url(fonts/ModernRomance.otf);
}

@font-face {
  font-family: Metal Gothic;
  src: url(fonts/MetalGothic.ttf);
}

@font-face {
  font-family: Internet;
  src: url(fonts/Internet.ttf);
}