@font-face {
  font-family: Inter-Regular;
  src: url(./assets/fonts/static/Inter-Regular.ttf);
}
@font-face {
  font-family: Inter-SemiBold;
  src: url(./assets/fonts/static/Inter-SemiBold.ttf);
}
@font-face {
  font-family: Inter-Bold;
  src: url(./assets/fonts/static/Inter-Bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: hsl(0, 0%, 8%);
  display: grid;
  place-items: center;
  height: 100vh;
  font-family: Inter-Regular, arial, sans-serif;
  color: hsl(0, 0%, 100%);
}
section {
  background-color: hsl(0, 0%, 12%);
  width: 300px;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}
.profile-picture {
  width: 100px;
  border-radius: 50%;
  margin: 10px 0;
}
.profile-name {
  font-family: Inter-Bold, arial, sans-serif;
}
.location {
  font-family: Inter-SemiBold, arial, sans-serif;
  color: hsl(75, 94%, 57%);
  font-size: 14px;
  margin-bottom: 25px;
}
.bio {
  font-size: 14px;
  margin: 10px 0;
}
.botton {
  width: 100%;
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 100%);
  border: 0;
  font-family: Inter-SemiBold, arial, sans-serif;
  border-radius: 10px;
  height: 35px;
  margin: 10px auto;
  padding: 5px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}
ul li {
  list-style-type: none;
}
.botton:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
  cursor: pointer;
}
.attribution {
  text-align: center;
}
