body {
    background-color: #1c1c1d;
    color: aliceblue;
    cursor: crosshair;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a, a:visited, a:active, a:focus {
    color: lightsteelblue; 
    text-decoration: underline;
}

a:hover {
    color:#00FF41;
}

.layout {
    width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between;
}

.header {
    font-size: 18pt; 
    margin: 20px auto;
    font-family: 'White Rabbit Regular', sans-serif;
}

.header a {
    color: aliceblue;
    text-decoration: none;
}

.header a div {
    position: relative;
    display: block;  
    padding: 10px;
}

.header a div::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #00FF41;
    transition: width 0.3s ease, left 0.3s ease;
}

.header a div:hover::after {
    width: 100%;
    left: 0;
}

.container {
    border: 1px solid lightgrey;
    border-radius: 4px;
    background-color: #101010;
    margin: 20px auto;
    font-size: 14pt;
}

.container-large {
    width: 500px;
}

.container-small {
    width: 250px;
}

.container-xlarge {
    width: 850px;
}

.container-xsmall {
    width: 0px;
}

.section {
    font-size: 24pt;
    margin-top: 15px;
}

.container-header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3px 10px;
    margin: 1px;
    font-size: 10pt;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'White Rabbit Regular', sans-serif;
}

.circle-container {
    display: flex;
    align-items: center;
    width: 30px;
    justify-content: space-between;
}

.circle {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    padding: 0;
    margin: 0;
}

.container-content {
    padding: 15px;
    border-top: 1px solid lightgrey;
}

.container-content p {
    margin: 0 auto
}

.link {
    display: flex; 
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
}

.link i {
    color: aliceblue
}

.link i:hover {
    color: #00FF41;
}

.list {
    margin: 0 auto;
}

.vertical-line {
  width: 1px;
  height: 30px;           
  background-color: aliceblue; 
  margin: 0 15px;
}

.year {
    text-align: right;
    font-size: 20pt;
    margin: 20px auto;
}

.paper-title {
    font-size: 18pt;
    margin-bottom: 10px;
}

.paper-authors {
    font-size: 13pt;
}

.paper-conference {
    font-size: 13pt;
    font-style: italic;
}

.paper-links {
    margin-top: 15px;
}

.paper-link-button {
    display: inline-block;
    background-color: #101010;
    color: aliceblue;
    border: 1px solid lightsteelblue;
    border-radius: 4px;
    padding: 5px 10px 5px 10px;
    margin-right: 10px;
    text-decoration: none;
    font-size: 11pt;
    text-align: center;
}

.paper-link-button:visited {
    color: inherit;
}

.paper-link-button:hover {
    color: #00FF41;
    border-color: #00FF41;
}

.highlight {
    text-decoration: underline;
}

:target {
    animation: flashBorder 2s ease;
}

@keyframes flashBorder {
  0%   { border-color: aliceblue; }
  50%  { border-color: #00FF41; }
  100% { border-color: aliceblue; }
}