
*{
    margin: 0 auto;
    padding: 0;
}

nav{
    /* background-color: aquamarine; */

    padding: 10px 30px 0;

}

#nav-category{
    /* background-color: aquamarine; */
    float: right;
    

    padding: 20px;
}

#nav-category > a{
    background-color: yellow;

    padding: 20px;

    font-size: 33px;

    border-radius: 29px;

}

#nav-category> a:hover{
    background-color: darksalmon;
}

#nav-line{
    /* width: 98%; 내~ 3개가 본문 위에 없고 오른쪽에만 있을 때 
    height: 1px;
    margin-top: 20px;
    background-color: brown;

    */
    
    background-color: brown;
}

#profile-container{
display: flex;
}

#profile-container > img {
    max-height: 350px;
    margin: 50px;

    border-radius: 269px;

}

#profile{
    margin: 50px;   
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#name-text{
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    color: wheat;
}

#content-text{
    font-size: 33px;

}

#interesting-container{

    padding: 40px;
}

#sns-container{
    height: 120px;
    display: flex;
    justify-content: space-around;
    background-color: lightgoldenrodyellow;
    align-items: center;
}

#sns-head{
font-size: 29px;
}

.sns-item{
    border: 2px solid wheat;

}

.sns-item > a{
    display: flex;
    align-items: center;

    font-size: 33px;

}

.sns-item img{
    margin-right: 12px;
}