body {
  margin: 0;
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  min-height: 100vh;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  display: grid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e5e7eb;
}

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

.credits {
  color: #777;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.6875rem;
  text-align: center;
}

.credits a {
  color: #000;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 21.25rem;
  margin: 0 auto 9rem auto;
}

.card {
  background-color: #fff;
  align-self: center;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 21.25rem;
  height: auto;
  padding: 1.5625rem;
}

.card header {
  display: flex;
  align-items: center;
  margin-bottom: 0.9375rem;
}

.card header img {
  border-radius: 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  margin-right: 0.9375rem;
}

.card header .user-info {
  display: flex;
  flex-direction: column;
}
header h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}

header h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #737373;
}

.content p {
  font-size: 0.93rem;
  font-weight: 400;
  color: 	#525252;
  line-height: 1.6;
}

@media (width: 768px) and (height: 1024px) {
  .container {
     width: 90%;
     max-width: 21.25rem;
     margin: 0 auto 23.99rem auto;
  }
}

@media (width: 375px) and (height: 812px) {
  .container {
     width: 90%;
     max-width: 21.25rem;
     margin: 0 auto 11rem auto;
  }
}