* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: url(./assets/bg-mobile-logo-final.png) no-repeat center / cover;
}
body * {
  font-family: "Inter", sans-serif;
  color: black;
}

#container {
  width: 100%;
  max-width: 588px;
  margin: 56px auto 0px;
  padding: 0 24px;
}

#profile {
  text-align: center;
  padding: 30px;
}
#profile img {
  width: 112px;
  margin: auto;
}
#profile p {
  font-weight: 500;

  line-height: 24px;
  margin-top: 8px;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  gap: 16px;
}
ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s;
}
/* pseudo-selector */
ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
}
#social-links {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  font-size: 24px;
}
#social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  transition: background 0.2s;
  border-radius: 50%;
}
#social-links a:hover {
  background: rgba(255, 255, 255, 0.5);
}
footer {
  text-align: center;
  font-size: 14px;
  padding: 24px 0;
}
@media (min-width: 700px) {
  body {
    background: url(./assets/bg-desktop-logo-final.png) no-repeat center / cover;
  }
}
