@import url('https://fonts.googleapis.com/css2?family=Coming+Soon&display=swap');
@import url('mediaquery.css');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: rgba(142, 184, 252, 0.177);
  height: 100vh;
  width: 100vw;
  font-family: 'Coming Soon', cursive;
}
.nav-fixed{
  position: fixed;
  width: 100vw;
  background-color: #EBF2FE;
}
.nav-bar{
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-bar div{
  width: 33%;
  font-size: 15px;
}
.nav-bar div:nth-of-type(2){
  display: flex;
  justify-content: center;
}
.nav-bar div:nth-of-type(3){
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-bar i{
  margin-left: 5px;
}
/* friends-nav */
.friends-nav{
  display: flex;
  justify-content: space-between;
  margin: 25px 20px;
  color: rgb(0, 44, 114);
}
.friends-nav div:first-child{
  font-weight: 700;
  font-size: 25px;
}
.friends-nav div:nth-of-type(2) i{
  margin-left: 17px;
  font-size: 20px;
}
/* 메인 채팅 콘텐츠 위치 조정 */
.main-content-position{
  padding-top: 120px;
  overflow-y: scroll;
  height: 110vh;
}
/* profile about me */
.profile-about-me{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 25px 20px;
  padding-bottom: 15px;
  /* border-bottom: 1px solid rgba(142, 184, 252, 0.397); */
  }
.profile-about-me img{
  width: 4em;
  border-radius: 25px;
  margin-right: 15px;
}
.profile-about-me p:first-child{
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 44, 114);
}
.profile-about-me p:nth-of-type(2){
  font-size: 14px;
  padding-top: 5px;
  color: rgb(150, 150, 150);
}
.profile-about-me p:nth-of-type(2) i{
  color: rgba(255, 0, 0, 0.656);
}
/* other-icon */
.other{
  margin: 0 20px;
  height: 15em;
  border-bottom: 1px solid rgba(142, 184, 252, 0.397);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.other div{
  display: flex;
}
.other > div:nth-of-type(2){
  margin-top: 20px;
}
.Icon{
  margin: 0 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(0, 44, 114);
}
.Icon i{
  font-size: 35px;
  margin: 13px;
}

/* suggestions */
.suggestions{
  margin: 20px;
}
.suggestions p{
  color: rgb(0, 44, 114);
}
.link-another{
  display: flex;

}
.box div{
  margin: 20px 30px 10px 30px;
  width: 4em;
  height: 4em;
  background-color: rgba(0, 44, 114, 0.541);
  border-radius: 10px;
}
.box div i{
  color: rgb(255, 255, 255);
  position: absolute;
}
.box{
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 하단 상태바  */
.foot-nav{
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  bottom: 0;
  background-color: #ebf2fe;
  padding: 20px 40px;
  color: rgb(0, 44, 114);
  font-size: large;
}
.foot-nav div:nth-of-type(2){
  width: 5px;
  height: 5px;
  background-color: red;
  position: absolute;
  border-radius: 50%;
  right: 35px;
  top: 15px;
}
.foot-nav div:first-child{
  width: 15px;
  height: 15px;
  background-color: red;
  border-radius: 50%;
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 14em;
  top: 14px;
  animation: bounce 1s ease-in-out infinite;
}
@keyframes bounce{
  50%{
    top: 10px;
  }
}
a:link{
  color: rgb(0, 44, 114);
}
a:visited{
  color: rgb(0, 44, 114);
}