@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

body {
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 790px;
  text-align: center;
}

p {
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

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

.main {
  width: 400px;
  height: 600px;
  background-color: hsl(0, 0%, 12%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 40px;
  /* margin-bottom: 30px; */
}

.avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.location {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
}

.btn-link {
  background-color: hsl(0, 0%, 20%);
  padding: 15px 0px;
  margin: 15px 0px;
  border-radius: 8px;
  font-weight: 600;
  caret-color: black;
}

.btn-link:hover,
.btn-link:active {
  background-color: hsl(75, 94%, 57%);
  color: hsl(76, 85%, 3%);
}

.btn-link:last-child {
  margin-bottom: 0;
}

.footer {
  margin-top: 20px;
  /* justify-self: flex-end !important; */
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  body {
    height: 790px;
  }
  .main {
    width: 360px;
  }
}

@media (min-width: 1500px) {
  body {
    height: 1550px;
  }
}
