* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

  body {
    width: 100%;
    height: 100vh;
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    display: flex;
    padding: 5% 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .container {
    height: auto;
    width: 100%;
    background-color: hsl(0, 0%, 12%);
    padding: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 2rem;
    font-family: "Inter", Arial, sans-serif;
  }

  .user-image {
    height: auto;
    width: 8vw;
    border-radius: 50%;
    margin-bottom: 0.5vw;
  }

  .user-name {
    font-size: 1.9vw;
    margin-bottom: 0.5vw;
  }

  .user-address {
    font-size: 1.2vw;
    color: hsl(75, 94%, 57%);
    margin-bottom: 1vw;
  }

  .user-bio {
    font-size: 1vw;
    margin-bottom: 0.5vw;
  }

  button {
    border: none;
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 20%);
    margin: 0.5vw;
    padding: 1vw;
    width: 100%;
    font-size: 1vw;
    border-radius: 0.5rem;
  }

  button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 0%);
    font-weight: 600;
    cursor: pointer;
  }

@media (min-width: 425px) and (max-width: 1020px) {
  body {
    padding: 5% 5%;
  }

  .container {
    max-width: 80%;
    height: auto;
    padding: 1rem;
    font-family: "Inter", Arial, sans-serif;
  }

  .attribution {
    font-size: 1rem;
  }

  .user-image {
    width: 9rem;
    margin-bottom: 1rem;
  }

  .user-name {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .user-address {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
  }

  .user-bio {
    font-size: 1rem;
    margin-bottom: 1rem;

  }

  button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }

  button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 0%);
    cursor: pointer;
  }
}

@media (max-width: 375px) {
  body {
    padding: 10% 5%;
    display: flex;
    justify-content: center;
  }

  .container {
    min-width: 100%;
    height: auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    font-family: "Inter", Arial, sans-serif;
  }

  .user-image {
    height: auto;
    width: 6rem;
    margin-bottom: 0.8rem;
  }

  .user-name {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .user-address {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .user-bio {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  button {
    width: 100%;
    padding: 1rem;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 0%);
    cursor: pointer;
  }
}
