* {
    margin: 0;
    box-sizing: border-box;
  }
  
  html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #262223;
  }
  
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background-color: #990011;
  }
  
  body::after {
    content: "@yejinc";
    display: block;
    margin-top: 50px;
    color: #F0EFF4;
    font-size: 12px;
    font-weight: 600;
  }
  
  .user-profile {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    max-width: 960px;
    padding: 40px 24px;
    border-radius: 2px;
    background-color: #FCF6F5;
  }
  
  .user-profile-photo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 300px;
    margin-right: 30px;
  }
  
  .user-profile-photo img {
    width: 150px;
    height: auto;
    border-radius: 150px;
    border: 1px solid #eaeaea;
  }
  
  .user-profile-data {
    flex-grow: 2;
    padding: 4px 0;
  }
  
  .user-profile-data h1 {
    font-size: 28px;
    font-weight: 300;
    line-height: 32px;
    margin: -5px 0 20px;
  }
  
  .user-profile-data dl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .user-profile-data dl div {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 40px;
    font-size: 16px;
    white-space: nowrap;
  }
  
  .user-profile-data dl dt {
    font-weight: 400;
    text-transform: lowercase;
    margin-left: 4px;
  }
  
  .user-profile-data dl dd {
    font-weight: 700;
  }
  
  .user-profile-data h2,
  .user-profile-data p,
  .user-profile-data a {
    font-size: 16px;
    line-height: 24px;
  }
  
  .user-profile-data h2 {
    font-weight: 600;
  }
  
  .user-profile-data a {
    color: #990011;
    text-decoration: none;
    font-weight: 600;
  }
  