* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lato", sans-serif;
  background-color: hsl(210deg, 30%, 8%);
  color: #fff;
}

.wrapper {
  min-height: 100vh;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  text-align: center;
}

.avatar {
  border-radius: 50%;
  width: 150px;
  height: auto;
  border: 6px solid hsl(230deg, 100%, 67%);
  margin-bottom: 10px;
}

h1 {
  margin-bottom: 20px;
}

a {
  color: hsl(230deg, 100%, 67%);
  text-decoration: none;
}

p {
  margin: 5px 0;
}

.links {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: hsl(210deg, 38%, 15%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
