*{
    /* border: solid; */
    margin: 0 auto;
    padding: 0;
}

nav{
    padding: 10px 30px 0;
}

#nav-category{
    padding: 20px;
    float: right;
}

#nav-category > a{
    padding: 20px;
    border-radius: 20px;

    font-size: 24px;
    font-weight: 500;
    color: blueviolet;

    background-color: antiquewhite;
}

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

#nav-line{
    width: 98%;
    height: 1px;
    
    margin-top: 20px;
    /* background-color: grey; */

}

#profile-container{
    display: flex;
}

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

    border-radius: 200px;
}

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

#name-text{ 
    margin-bottom: 19px;

    font-family: Pretendard;
    font-size: 36px;
    font-weight: 800;
    color: coral;
}

#content-text{
    font-family: Pretendard;
    font-size: 24px;
    font-weight: 500;
    color: black;

}

#interesting-container{
    /* background-color: aquamarine; */
    /* border: solid; */
    
    padding: 40px;
} 

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

    background-color:rgb(203, 233, 252);
}

#sns-head{

    font-size: 26px;
    font-weight: 800;
    color: rgb(64, 64, 64);
}

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

}

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

    font-size: 24px;
    font-weight: 500;
    color: cadetblue;
}


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