:root {
  --color-1: #f7e59c;
  --color-2: #eb1616;
  --color-3: #ffab67;
  --color-4: #661c1c;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

p {
  margin: 0.5rem;
}

body {
  background-color: var(--color-1);
  color: var(--color-2);
  display: flex;
  align-items: center;
  font-family: "Inclusive Sans", "Arial", "Sans Serif";
  font-size: 1.2rem;
}

.content {
  width: 90%;
  max-width: 480px;
  margin: 1rem auto;
  text-align: center;
  background-color: var(--color-3);
  border-radius: 5px;
  padding: 1rem;
}

.content > header {
  padding: 0 1rem 1rem;
}

.avatar {
  width: 192px;
  height: 192px;
  object-fit: cover;
  border-radius: 3px;
}

.username {
  font-weight: bold;
  font-size: 1.6rem;
}

.button {
  width: 80%;
  display: block;
  background-color: var(--color-2);
  margin: 0.5rem auto;
  padding: 0.5rem 32px;
  color: var(--color-3);
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  word-break: break-all;
  animation: all 1s ease;
}

.button:hover {
  background-color: var(--color-4);
}

.icon {
  width: 18px;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* inclusive-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inclusive Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/inclusive-sans-v4-latin_latin-ext-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
