body {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-align: center;
  background-color: hsl(0, 0%, 8%);
}

h1 {
  font-family: "Inter", sans-serif;
  color: hsl(0, 0%, 100%);
  font-weight: 700;
}

.profile-container {
  display: flex;
  font-family: "Inter", sans-serif;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 70px;
  padding: 20px;
  border: 1px solid black;
  border-radius: 20px;
  width: 400px;
  background-color: hsl(0, 0%, 12%);
}

.profile-container p {
  color: hsl(0, 0%, 100%);
  margin: 5px 0;
  font-weight: 400;
}

.profile-image {
  border-radius: 50%;
  width: 100px;
  position: relative;
  top: 15px;
}

.profile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-links li {
  position: relative;
  right: 20px;
  list-style: none;
  color: white;
  margin: 10px 0;
  background-color: hsl(0, 0%, 20%);
  border-radius: 5px;
  width: 300px;
  height: 20px;
  padding: 10px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

.profile-links li:hover {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}

address {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 10px 0;
  color: hsl(75, 94%, 57%);
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: white;
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/fonts/inter-v20-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("./assets/fonts/inter-v20-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("./assets/fonts/inter-v20-latin-700.woff2") format("woff2");
}

@media screen {
  @media (max-width: 450px) {
    .profile-container {
      width: 90%;
    }

    .profile-links li {
      width: 90%;
    }
  }
}
