* {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 8%);
}

a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}

#profile-container {
  width: 380px;
  height: 640px;
  background-color: hsl(0, 0%, 12%);
  border-radius: 20px;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -310px 0px 0px -190px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.avatar-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: 0.5rem;
}

.profile-link-text {
  text-align: center;
}

.profile-link-text h1 {
  color: hsl(0, 0%, 100%);
  font-size: 27px;
  font-weight: 600;
  margin-top: 1rem;
}

.profile-link-text h4 {
  color: hsl(75, 94%, 57%);
  font-size: 15px;
  margin-top: 0.5rem;
  font-weight: 600;
}

.profile-link-text p {
  color: hsl(0, 0%, 100%);
  font-size: 14px;
  margin-top: 1.5rem;
  font-weight: 400;
}

.profile-links-container {
  margin-top: 1.5rem;
}

.links-menu {
  list-style-type: none;
  text-align: center;
  width: 300px;
  height: 45px;
}

.links-menu li a {
  background-color: hsl(0, 0%, 20%);
  color: white;
  width: 300px;
  height: 45px;
  margin: 0.9rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.1s ease-in;
  &:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
  }
}

/* 

Media Queries 

*/

@media screen and (max-width: 500px) {
  #links-profile-container {
    width: 90%;
    height: 620px;
  }

  .links-menu li a {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 280px) {
  .links-menu li {
    width: 260px;
  }

  .links-menu li a {
    width: 90%;
    font-size: 12px;
  }
}
