* {
  box-sizing: border-box;
  font-family: Arial;
}

body {
  padding: 10px;
  background: #f1f1f1;
}


a {
  color: maroon;
  text-decoration: none;
}


  a:hover{
       text-decoration: underline;
    }
h1{

}
h2{
  color: maroon;
  font-size: 1.2em;
}

li{
  margin: 10px 0;
}


.papername {
font-weight: bold;
}

.pubname {
font-style: italic;
}

.publocation {

}

.paperlink {

}




/* Header/Blog Title */
.header {
  padding: 30px;
  text-align: center;
  background: white;
}



/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: maroon;
}

/* Style the topnav links */
.topnav a {
  font-size: 1.1em;
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


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

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

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
