
.header {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 100%;
    padding: 2%;
    text-align: center;
    position: relative;
}

.header-bg {
    position: absolute;
    left: 0;
    top: 10%;
    width: 50%;
    height: 100%;
    background-image: url('../Background_home_left.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    top: 10%;
    left: 50%;
    width: 50%;
    border-radius: 20px;
    /*    background-color: rgba(10,10,10,0.7);*/
    text-align: left
}

.header h1 {
    background: linear-gradient(270deg, #65CF37, #FFE874, #FF8888, #EA29D6);
    background-size: 150% 150%; 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientWave 5s ease infinite;

    padding: 2%;
    margin: 0 auto;
    font-size: 5rem;
    font-family: "Poiret One", sans-serif;
    /*    width: 40%;*/
}
@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.header img {
    width: 12rem;
    position: relative;
    opacity: 0.8;
}

#break {
    margin: auto;
    position: relative;
    width: 30%;
    height: 3px;
    background: #333;
}

.header-research {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 70%;
    margin-bottom: 100px;
    /*    background-color: #111;*/
    display: flex;
}

.header-research-bg {
    position: absolute;
    left: 50%;
    top: 10%;
    width: 50%;
    height: 100%;
    background-image: url('../Background_home_right.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.content {
    position: relative;
    left: 0;
    display: block;
    color: aliceblue;
    width: 50%;
    height: 100%;
    text-align: left;
    padding: 6% 2% ;
    font-size: 1.6rem;
}

.content button {
    padding: 20px;
    margin: 25px 0 0 0;
    width: ;
    background: #111;
    border: none;
    color: #FF6BB9;
    font-size: 1rem;
    box-shadow: 6px 6px deeppink;
    transition: 0.2s all;
    cursor: pointer;
    position: relative;
}

.content button:hover {
    box-shadow: 0px 0px #00ccff;
    transform: translate(10px);
    background: #FF6BB9;
    color: #111;
}


/*Selected Publication*/
.publication{
    display: flex;
    flex-direction: column;
    padding: 5%;
    z-index: 10;
    height: auto;
    min-height: 500px;
}
#publication-list-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    padding: 20px;
    font-size: 1.1rem;
}
#heading{
    color: aliceblue;
    text-align: center;
    font-size: 2.3rem
}
.article-box {
    display: flex;
    position: relative;
    height: 20rem;
    padding: 10px;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.article-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 185, 0.3);
}

.article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.8;
}

.article-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(15,15,1,0.5);
    color: #222;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}
.article-box:hover .article-info{
    color: #FF6BB9;
}
.article-info h3 {
    color: deeppink;
    margin-bottom: 5px;
    font-size: 1.1em;
    
}


.article-info p {
    font-size: 0.85em;
    font-style: italic;
    color: #fafafa;

}

.article-info span {
    border: 3px solid;
    padding: 0 3px;
    border-radius: 50%;
}
/*Scroll to top button customization*/
.scroll-content::after{
    border: 5px solid deeppink;
    border-right: transparent;
    border-bottom: transparent;
}
.scroll-arrow{
    color: deeppink;
}
.progress-ring-circle{
    stroke:deeppink;        
}
