* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.base {
    top: 0;
    height: 5900px;
}

#publication {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 5px;
}

.intro {
    position: absolute;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2)), url("images/publication.jpg") no-repeat;
    background-size: cover;
    background-position: center 0;
    width: 100%;
    height: 850px;
    overflow: hidden;
    top: 0;
}

.introtext {
    position: relative;
    text-align: center;
    top: 40%;
    font-family: 'Playfair Display';
    font-size: 100px;
    font-weight: 100;
    letter-spacing: -3px;
    color: white;
    opacity: 0;
    transition: opacity 400ms ease-in;
}

.innerblock1 {
    position: absolute;
    width: 100%;
    top: 850px;
    z-index: 1;
    height: 5900px;
    background: linear-gradient(to bottom, #20201e 0%, #6a6864 50%, #20201e 100%);
}

.list-headline {
    color: white;
    font-size: 40px;
    padding-bottom: 15px;
    text-align: center;
}

.list-wrapper {
    float: left;
    width: 50%;
    margin: 50px auto;
    padding-top: 6%;
    padding-left: 5%;
    padding-right: 5%;
}

.list {
    list-style-type: none;
    border-top: rgb(182, 182, 182) 1.5px solid;
}

.list-item {
    color: white;
    margin: 20px 0;
    font-size: 1vw;
    font-weight: 1500;
    width: fit-content;
    block-size: fit-content;
}

.list-item-no-pdf {
    color: white;
    margin: 20px 0;
    font-size: 1vw;
    font-weight: 1500;
    width: fit-content;
    block-size: fit-content;
    color: rgb(180, 180, 180);
}

.list-item:hover {
    color: rgb(200, 200, 200);
    cursor: pointer;
}

.fade-in {
    opacity: 0;
    transition: all 400ms ease-in;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(-60px);
}

body {
    background-color: #364b52;
    margin: 0 auto;
}
