* {
    box-sizing: border-box;
    color: white;
    font-family: "Inter", sans-serif;
  }
  
  body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 8%);
    font-size: 14px;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .profile img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  
  .name-card {
    text-align: center;
    margin-top: 20px;
  }
  
  .name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
  }
  
  small {
    color: hsl(75, 94%, 57%);
    font-size: 12px;
  }
  
  .name-card p:last-child {
    margin-top: 20px;
    font-size: 13px;
  }
  
  .buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  button {
    width: 100%;
    height: 40px;
    margin-top: 12px;
    background-color: hsl(0, 0%, 20%);
    border: none;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
  }
  
  @media screen and (min-width: 768px) {
    body {
      font-size: 16px;
    }
  
    .card {
      max-width: 400px;
      padding: 40px;
    }
  
    .profile img {
      width: 90px;
      height: 90px;
    }
  
    .name {
      font-size: 24px;
    }
  
    small {
      font-size: 14px;
    }
  
    .name-card p:last-child {
      font-size: 15px;
    }
  
    button {
      font-size: 16px;
    }
  }