.header {
    display: flex;
    padding: 20px;
    background-color: #000;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
}
.header img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    display: flex;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
}
.navbar {
    display: flex;
    justify-content: left;
    align-items: center;
    overflow:hidden;
    background-color: #000;
    top: 0;
    width: 30%;
}
.navbar a {
    display: block;
    color: #f2f2f2;
    text-decoration: none;
    padding: 10px;
}
.navbar a:hover {
    background: #ddd;
    color: black;
}
.h1 {
    font-family: "Lucida Console", "Courier New", monospace;
}
a {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#Homepage {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
p {
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    padding-top: 20px;
}
.projects a {
    color: black;
    text-decoration: none;
}

.leftcolumn {
  float: left;
  width: 70%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

.blogimg {
  display: flex;
  justify-content: center;
  background-color: #aaa;
  padding: 20px;
  max-width: 550px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  width: 600px;
}

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

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

.rmbutton {
    display: flex;
    justify-content: right;
}

p{
    max-width: 800px;
}

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