@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  background-color: hsl(0, 0%, 8%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  margin-top: 100px;
  background-color: hsl(0, 0%, 12%);
  width: 340px;
  height: 590px;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content__photo {
  width: 90px;
  height: auto;
  border-radius: 50%;
  margin-top: 10px;
}
.content__name {
  margin-top: 30px;
  font-size: 24px;
  color: white;
  font-weight: 500;
}
.content__location {
  margin-top: 8px;
  color: rgb(188, 246, 101);
  font-weight: 600;
  font-size: 14px;
}
.content__occupation {
  margin-top: 25px;
  color: white;
  font-weight: 200;
  font-size: 14px;
}
.content__links-area {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.content__links {
  padding: 14px;
  background-color: hsl(0, 0%, 20%);
  width: 100%;
  text-decoration: none;
  color: white;
  margin-top: 15px;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.content__links:hover {
  background-color: rgb(163, 238, 51);
  color: hsl(0, 0%, 12%);
}

@media screen and (min-width: 750px) {
  .content {
    justify-content: center;
    width: 410px;
    padding: 40px;
    height: 620px;
  }
}/*# sourceMappingURL=main.css.map */