:root {
  --color-yellow: hsl(47, 88%, 63%);
  --color-white: hsl(0, 0%, 100%);
  --color-gray-light: hsl(0, 0%, 42%);
  --color-gray-dark: hsl(0, 0%, 7%);
  --font-family: "Figtree";
}

@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/static/Figtree-ExtraBold.ttf");
  font-weight: bold;
  font-size: 2rem;
}
@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/Figtree-VariableFont_wght.ttf");
  font-weight: 200;
  font-size: 12px;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-yellow);
  line-height: 1.6;
  color: var(--color-gray-light);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: var(--color-yellow);
}

.main {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 2rem;
}

.top {
  width: 100%;
  margin-bottom: 2rem;
}
.top img {
  width: 100%;
}

p {
  word-break: break-all;
}

.profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.btn {
  width: 100px;
  padding: 1rem;
  background-color: var(--color-yellow);
  color: var(--color-gray-dark);
  font-family: var(--font-family);
  font-weight: bold;
  border: 0;
  cursor: pointer;
}

.html {
  font-family: "Figtree";
  font-weight: bold;
  color: var(--color-gray-dark);
  font-size: 2rem;
  letter-spacing: 1;
}

p {
  font-family: "Figtree";
  font-weight: 100;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
}

@media screen and (min-width: 327px) {
  .container {
    background-color: var(--color-yellow);
    padding: 2rem;
  }
  .main {
    max-width: 387px;
  }
}

/*# sourceMappingURL=style.css.map */
