@font-face {
    font-family: 'Times';
    src: url('../source/font/times.ttf');
}
@font-face {
    font-family: 'lucon';
    src: url('../source/font/lucon.ttf');
}

.index-body{
    height: 98%;
    width: 98%;
    font-family: 'Times';
}

.index{
    height: 80%;
    width: 100%;
    margin-left: 5%;
    margin-right: 5%;
}

.navbar{
    height: 5%;
    width: 90%;
    font-family: 'lucon';
    position: relative;
    display: flex;
    align-items: center;
    a{
        margin-right: 12%;
        text-decoration: none;
        color: #7f7f7f;
    }
    a:hover{
        transition: 0.3s;
        color: #cfcfcf;
    }
    border-bottom: 1px solid #ddd; /* Added border for better visibility */
}
.index-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    .abstract{
        width: 100%;
        height: 20%;
        margin-bottom: 20px;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        .avatar{
            width: 80px;
            border-radius: 40%;
            border: 1px solid #770077;
            margin-right: 20px;
        }
        p{
            font-size: 0.7em;
            font-family: 'Times';
        }
        .name{
            font-size: 1em;
            font-weight: bold;
            font-family: 'lucon';
        }
        .main-info{
            margin-right: 20px;
        }
        .li{
            font-size: 0.9em;
            height: 25px;
            display: flex;
            align-items: center;
            color: #3f3f3f;
            img{
                width: 20px;
                height: 20px;
                margin-right: 5px;
            }
            a{
                text-decoration: none;
                color: #3f3f3f;
            }
            a:hover{
                transition: 0.3s;
                color: #cfcfcf;
            }
        }
    }
    .content{
        width: 86%;
        height: 80%;
        margin-left: 5%;
        font-size: 0.8em;
        h2{
            font-family: 'lucon';
        }
        a{
            text-decoration: none;
            color: #339fcf;
            font-family: 'lucon';
            font-weight: bold;
        }
    }
}
.footer{
    height: 18%;
    background-color: #efefef;
    a{
        text-decoration: none;
        color: #5f5f5f;
        font-family: 'lucon';
        margin-right: 20px;
    }
    a:hover{
        transition: 0.3s;
        color: #afafaf;
    }
}