@import url(./base.css);

@media screen and (min-width: 1024px) {
    .index-content{
        min-height: 720px;
        min-width: 480px;
        width: calc(100vw - 720px);   
    }
    .about{
        padding: 12px 36px;
    }
}

@media screen and (max-width: 1024px) {
    .index-content{
        width: calc(100vw - 40px);   
    }
    .about{
        padding: 12px 8px;
    }
}

.index-content{
    margin-top: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 0.666667px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom:12px;
}

.description{
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.avatar {
    /* border: 0.666667px solid rgba(255, 255, 255, 0.18); */
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url(../image/avatar.jpg);
    background-size: 100% 100%;
    margin-bottom: 12px;
}
.name{
    padding-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.18);
}

p {
    text-indent: 2em;
}

a{
    color: rgba(255, 255, 255, 0.75);
}



