/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 100%;
  /* background: hsl(33, 42%, 87%); */
}
/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* Desktop first design */

@font-face {
  font-family: "inter";
  src: url(/assets/fonts/static/Inter-Regular.ttf);
  font-style: normal;
  font-weight: 100;
}

body {
  width: 100vw;
  height: 100vh;
  background: #141414;
  padding: 100px;
  font-family: "inter";
}
main {
  background: #1f1f1f;
  width: 100%;
  max-width: 375px;
  min-width: 420px;
  margin: 20px auto;
  margin-bottom: 40px;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
}
img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  display: inline-block;

  border-radius: 50%;
}

h1,
p {
  color: white;
  margin-bottom: 2px;
}
h3 {
  color: #baea1c;
  margin-bottom: 20px;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 15px;
  margin-top: 20px;
}

.gray {
  background: #333333;
  font-weight: 500;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  padding: 10px;
}
.gray:hover {
  background-color: #baea1c;
  cursor: pointer;
  color: #141414;
  font-weight: 900;
}
a {
  text-decoration: none;
}

.attribution {
  color: white;
   min-width: 420px;
}




