.headline {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.publications-section {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: dotted 5px var(--logoColorThree);
    flex-direction: column;
}

.publication-item {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 1px black;
}

.publication-text-field {
    height: 80%;
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.pub-title {
    font-weight: bold;
    font-size: 150%;
    margin-bottom: 0;
}

.pub-link {
    color: black;
    text-decoration: none;
}

.pub-link:hover {
    color: var(--logoColorThree);
}