@charset "utf-8";


/*基本設定-----------------------------------------*/
/* 隙間なく表示させるおまじない */
html, body {
    margin: 0px;
    padding: 0px;
 }

/* ページ内全体の文字の設定と背景の設定 */
body {
    font-family: "Noto Serif JP", serif; 
    font-size: 16px;
    color: #3E3333;
    line-height:1.8em;
    background-color: #EEECE3;
    
}

/* ページ内全体のリンクの文字色 */
a{text-decoration: none;}
a:link {color: #3E3333;} 

#container{
    background-color: bisque;
    margin: 0 auto;
    width: 100%;
    max-width: 390px;
    background-image: url(img/back.png);
    background-size: contain;
    text-align: left;
}

header{
    width: 100%;
    height: 60px;
    background-color: #3E3333;
}

.title{
    color: #EEECE3;
    padding: 13px;
    margin: 0;
}

main{
    height: auto;
}

#userprofile{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.icon-circle{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-top: 10%;
}

.icon-circle img{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.username{
    width: 100%;
    font-size: large;
    font-weight: bold;
    text-align: center;
    margin-top: 0%;
    margin-bottom: 5%;
}

.under{
    border-bottom: dashed 2px #715b5b
}

.follow_text{
    color: #EEECE3;
    background-color: #BA6047;
    width: auto;
    padding: 6px 30px;
    text-align: center;
    margin-bottom: 0%;
}

#maintext{
    font-size: 14px;
    width: 70%;
    height: 25%;
    text-align: center;
    margin: 0 auto;
}

.post{
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.post img{
    width: 33%;
    height: auto;
    padding: 1px 0;
    text-align: center;
}

footer {
    background-color: #3E3333;
    width: 100%;
    height: 60px;
    position: sticky;
    left: 0;
    bottom: 0;
    padding: 0px 0px;
    display: flex;
    justify-content: space-around;
}

.botom_icon{
    width: 33%;
    display: flex;
    justify-content: space-around;
}

.botom_icon img{
    filter: invert(97%) sepia(28%) saturate(417%) hue-rotate(23deg) brightness(116%) contrast(87%);
    width: 30px;
    height: 30px;
    padding: 15%;
}
