body {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-color: #DBDBDB;
}

html {
  scroll-behavior: smooth;
}

.narrow {
  max-width: 500px;
  font-size: 15px;
  margin: 10px auto 5px;
  padding: 5px;
  background-color: #1c1a22; 
  color: white; 
}

.index {
  max-width: 300px;
  font-size: 15px;
  margin: 15px auto 5px;
  padding: 5px;
  background-color: #1c1a22; 
  color: white; 
  border: 1px dashed white;
}

.index ul{
  margin: 2px;
  margin-left: 10px;
  padding: 0;
}

.index ul li{
  list-style-type: none;
}

.index ul li ul{
  margin-left: 25px; 
  padding: 0;
}

.index ul li ul li{
  list-style-type: circle;
}

.main-content {
    width: 100%;
    max-width: 800px; 
    margin: auto; 
    padding: 20px;
    box-sizing: border-box;
    background-color: #DBDBDB; 
}

.main-content-div {
    width: 100%;
    max-width: 800px; 
    margin-top: 0px;
    margin-bottom: 10px; 
    padding: 20px;
    box-sizing: border-box;
    background-color: #1c1a22; 
    color: white; 
    box-shadow: 3px -3px 6px black;
}

h2 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0px;
}

h3 {
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 0px;
}

me {
  color: #fffacd;
}

.papers-list, .presentations-list {
    list-style-type: decimal;
    padding-left: 20px; 
}

.paper, .presentation {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;
}

.title {
    display: inline;
}

.authors, .year, .presentationplace {
    display: inline;
}

.paperplace, .presentationvenue, .status{
    display: inline;
    font-style: italic;
}

.url {
    margin-top: 2px;
    margin-bottom: 1px;
}
.video, .github, .misc, .tutorial {
    margin-top: 1px;
    margin-bottom: 1px;
}

.note::before {
    content: "[Note] ";
} 

.note {
    margin-top: 1px;
    margin-bottom: 1px;
}

.title::before{
    content: "\"";
}

.title::after {
    content: "\".";
}
.authors::after, .paperplace::after, .status::after, .presentationvenue::after {
    content: ".";
}

.year::before {
    content: "(";
} 
.year::after {
    content: ")";
} 

@media screen and (max-width: 1000px) {
    .main-content {
        width: 90%;
        padding: 10px;
    }

    .paper {
        padding: 5px;
    }
}

a {
  color: #DDDDDD;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-decoration-style: solid;
  text-underline-offset: 0.2em;
}

a:visited {
  color: #DDDDDD;
}

a:hover {
  color: #888888;
}


.circle {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 1px solid black;
}

.btn-flat-simple {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  border: solid 1px white;
  transition: .4s;
  line-height: 1.8;
}