/* 여기에 스타일을 구현해 주세요 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  position: relative;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  padding: 20px;
  width: 400px;
}

.avatar-item {
  float: left;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  width: 64px;
  height: 64px;
}
.avatar-img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.status.offline {
  display: block;

  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #dbdbdb;
}
.status.online {
  display: block;

  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #4cfe88;
}
.status {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;

  position: absolute;
  right: 0;
  bottom: 0;
}
