a {
  color: #16a085;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #16a085;
  text-decoration: none;
}

body {
  background-color: #FFFFFF;
}

body,
td,
th,
tr,
p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  line-height: 1.8;
}

a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

strong {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 600;
}

h2 {
  margin: 0;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: #1a1a2e;
  line-height: 1.8;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #16a085;
  margin-top: 10px;
}

.papertitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.name {
  padding-top: 20px;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.8;
}

.one {
  width: 160px;
  height: 160px;
  position: relative;
}

.two {
  width: 160px;
  height: 160px;
  position: absolute;
  transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
}

.fade {
  transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
}

span.highlight {
  background-color: #ff6b6b;
}

.colored-box {
    color: #1a1a2e;
    padding: 20px;
    display: inline-block;
    border-radius: 10px;
}

.timeline {
  position: relative;
  padding-left: 40px;
  list-style: none;
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #16a085;
  z-index: 2;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: -29px;
  top: 18px;
  width: 2px;
  height: calc(100% + 12px);
  background-color: #ddd;
  z-index: 1;
}

.timeline-item:last-child::after {
  display: none;
}