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

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_slnt,wght.ttf");
}

:root {
  --Green: hsl(75, 94%, 57%);

  --White: hsl(0, 0%, 100%);

  --Grey-700: hsl(0, 0%, 20%);
  --Grey-800: hsl(0, 0%, 12%);
  --Grey-900: hsl(0, 0%, 8%);
}


body {
  background-color: var(--Grey-900);
  color: var(--White);
  font-family: 'Inter';
  font-size: 14px;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 10px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 400px;
  min-width: 320px;
  background-color: var(--Grey-800);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.img-profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.img-profile img {
  width: 100%;
  height: 100%;
}

.user-address {
  color: var(--Green);
}

.user-description {
  font-weight: 400;
  margin: 20px 0;
}

.button {
  width: 100%;
  padding: 15px;
  font-weight: bolder;
  color: var(--White);
  background-color: var(--Grey-700);
  border: none;
  border-radius: 10px;
  transition: color 0.5s, background-color 0.5s;
  text-align: center;
  text-decoration: none;
  margin: 3px 0;
}

.button:hover,
.button:active {
  background-color: var(--Green);
  color: var(--Grey-900);
  cursor: pointer;
}

.attribution {
  position: absolute;
  bottom: 0;
  font-size: 11px;
}

.attribution a {
  color: var(--Green);
}
