.infopage {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    background-image: url('/public/img/noise.png');
    padding: 50px;
}

.infopage > div {
    max-width: 1000px;
    margin-top: 120px;
}

.infopage h1:first {
}

.infopage p {
    font-size: 25px;
    margin-bottom: 55px;
}

.infopage img {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    height: auto;
}

.infopage hr {
    display: block;
    width: 20%;
    height: 5px;
    background-color: rgb(4, 42, 36);;
    border: none;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 70%;
}

.infopage ul {
    margin-left: 50px;
    font-size: larger;
}

.contacts {
    display: flex; 
    flex-direction: row;
}

.contactinfo {
    margin-bottom: 50px;
    font-size: 20px;
    text-align: center;
}

.contactinfo h1 {
    font-size: 30px;
}

.contacts img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

.contactinfo div {
    margin-bottom: 10px;
}

.infopage:nth-child(even) {

}

.infopage:nth-child(odd) {

}

.publication {
    align-items: start;
    padding-bottom: 100px;
    width: 80%;
}

.publication p {
    margin-bottom: 25px;
}

.files {
    display: flex;
    flex-direction: row;
}

.file-icon {
    width: 40px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.file-icon:hover {
    transform: scale(1.1);
}

.file-viewer {
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


@media all and (max-width: 600px) {
    .infopage hr { 
        width: 100%;
    }

    .contacts {
        flex-direction: column;
    }
}