@import url(./base.css);

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgb(60, 59, 63), rgb(96, 92, 60));
}

@media screen and (min-width: 1024px) {
    .index-content{
        justify-content: flex-start;
        flex-direction: row;
        min-height: 320px;
        min-width: 560px;
        height: calc(100vh - 480px);
        width: calc(100vw - 720px);   
    }
    .description{
        padding-left: 126px;
        padding-right: 72px;
    }
    .social-media{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding:48px 32px;
        border-right: 0.666667px solid rgba(255, 255, 255, 0.18);
        border-left: 0.666667px solid rgba(255, 255, 255, 0.18);
    }
    .pages{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding:96px 48px;
    }
}

@media screen and (max-width: 1024px) {
    .index-content{
        justify-content: center;
        flex-direction: column;
        height: calc(100vh - 60px);
        width: calc(100vw - 40px);   
    }
    .description{
        padding-top: 64px;
        padding-bottom: 48px;
    }
    .social-media{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding:32px 48px;
        border-top: 0.666667px solid rgba(255, 255, 255, 0.18);
        border-bottom: 0.666667px solid rgba(255, 255, 255, 0.18);
    }
    .pages{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding:64px 48px;
    }
}

.index-content{
    display: flex;
    align-items: center;
    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);
}

.description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-icon{
    text-align: center;
    width: 32px;
    height: 32px;
    padding: 6px 12px;
}

.font-icon{
    fill: #bfbfbf;
}


.pages a{
    color: rgba(0, 0, 0, .6);
    text-decoration: none;
    text-wrap: nowrap;
    -moz-text-wrap: nowrap;
    -webkit-text-wrap: nowrap;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}


@media screen and (min-width: 1024px) {
    .pages a{
        font-size: 16px;
        margin-top: 10px;
    }
    
}


@media screen and (max-width: 1024px) {
    .pages a{
        font-size: 16px;
        padding: 0px 10px;
    }
    
}


.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{
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
}
.slogan{
    margin-bottom: 12px;
    font-size: 12px;

}




