* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}
/* Weights: 400, 600, 700 */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: hsl(0, 0%, 8%);
  font-family: "Inter", sans-serif;
}

.main {
  background-color: hsl(0, 0%, 12%);
  width: 300px;
  border-radius: 10px;
}

.container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.social-links {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 25px;
}
img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin: 25px 0px 24px 0px;
}

.name {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.address {
  color: hsl(75, 94%, 57%);
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 24px;
}
.desig {
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 16px;
}

.social---link:link,
.social---link:visited {
  cursor: pointer;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  /* height:32px ; */
  text-decoration: none;
  text-align: center;
  width: 235px;

  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 20%);
  margin: 4px;
  border: none;
  padding: 12px 0px 12px 0px;
  border-radius: 5px;
}

.social---link:hover,
.social---link:active {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}
