@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
  box-sizing: border-box;
} 

body {
  font-family: Arial;
  padding: 20px;
  background: #000000 url("/themeassets/ghost-background.jpg");
}

/* Header/Blog Title */
.header {
  font-size: 24px;
  text-align: center;
  background: rgba(0,0,0,0.6);
  border: 5px solid #8320E6;
  line-height: 0.85;
  font-family:Caveat, serif;
  color: lime;
}

h2 {
  font-family: Caveat, sans-serif;
  font-size: 40px;
  text-align: center;
}

table {
  border-collapse: collapse;
}

th {
  font-size: 18px;
}

th, td {
  padding: 10px;
  border: 1px solid cyan;
  border-collapse: collapse;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.main {
  float: left;
  width: 70%;
  color:white;
  margin: auto;
}

.main2 {
  float: left;
  width: 80%;
  margin: auto;
  color:white;
}

/* Right column */
.menu {
  float: left;
  color: white;
  width: 20%;
  padding-left: 20px;
}

.menu2 {
  float: left;
  width: 20%;
  padding-left: 20px;
}

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

/* Add a card effect for articles */
.card {
  background: rgba(0,0,0,0.8);
  border: 3px solid #8320E6;
  padding: 20px;
  margin-top: 20px;
}

.sidebar {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

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

/* Footer */
.footer {
  clear: both;
  padding: 5px;
  text-align: center;
  background: #ccd9b0;
  margin-top: 500px;
}

/* 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) {
  .main, .menu {
    width: 100%;
    padding: 0;
  }
}