@charset "utf-8";
html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family:"Joft";
    font-size: 1em;
    color:#819AB0;
    line-height: height 1.8em; 
    background-color: white;
    background-image: none;
}
a{text-decoration: none;}
a:link {color: aquamarine;}

#header {
    width: 390px;
    height: 50px;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    background:rgba(220, 232, 234, 0.8);
    text-align: center;
    position: fixed;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#container {
    width: 390px;
    padding: 0;
    background-color: black;
    margin: 0 auto;
    background-image: none;
    background-size: contain;
    text-align: center;
}

.picture {
    width: 390px;
    height: 500px;
    background-image: url(img/back.png);
    background-size: cover;
    background-position: -10;
    background-attachment: fixed;
}

#profile{
    background-color: #d5e3e9;
    background-image: url(img/pattern.png);
    border-radius: 32px;
    padding-top: 80px;
    padding-bottom: 200px;
    margin-top: -80px;
}

.profile_photo{
    margin-top: -60px;
}


.profile_photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: solid 3px white;
}

.name {
    font-size: 24px;
    margin-top: -5px;
}

.name_id {
    font-size: 14px;
    margin-top: -18px;
}

.profile {
    font-size: 14px;
    background-color: #F6F8F8;
    max-width: 345px;
    padding-top: 100px;
    padding-bottom: 100px;
    border-radius: 32px;
    border: solid 3px #CADDE3;
    margin: 0 auto;
    margin-top: -120px;
    box-shadow: 0px 3px 0px #C48B9C;
}

.blue {
    background: radial-gradient(#8EBDF4, #ACCAD2);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    margin: 0px 3px;
}

.sunset {
    background: radial-gradient(#E0AC8A, #A3C9C9);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    margin: 0px 3px;
}

.tag {
    font-size: 11px;
    color: white;
    display: flex;
    justify-content: center;
    margin-top: -100px;
}

.number {
    font-size: 13px;
    display: flex;
    justify-content: space-evenly;
    margin-top: 15px;
}

.follow-button{
    margin-top: 10px;
    position: relative;
}
.follow-button p{
    font-size: 16px;
    color: white;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list {
    margin-top: -180px;
    position: relative;
    h2{
        font-size: 16px;
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%,-50%);
    }
    img{
        text-align: center;
    }

}

#post{
    background-color: #F6F8F8;
    width: auto;
    height: auto;
    padding-top: 50px;
    padding-bottom: 80px;
    margin: 0 auto;
    margin-top: -50px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.pick_up {
    position: relative;
    margin: auto;
    width: 305px;
    height: 155px;
    object-fit: cover;
    border-radius: 10px;
    border: solid 2px white;
    overflow: hidden;
}

.pick_up .kotei {
    position: absolute;
    left: 6px;
    top: 6px;
}

.pick_up p {
    position: absolute;
    text-align: right;
    color: white;
    font-size: 12px;
    right: 15px;
    bottom: -5px;
    text-shadow: 1px 1px 2px #819AB0;
}

.post {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative;
}

.pic img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: solid 2px white;
}

#more {
    position: relative;
    margin-top: 2px;
    margin-left: 2px;
    p{
        font-size: 16px;
        position: absolute;
        left: 45%;
        top: 35%;
        transform: translate(-50%,-50%);

     }
}

#menu {
    width: 390px;
    height: 80px;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    background:rgb(246,248,248,1);
    text-align: center;
    position: fixed;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}