:root {
  color-scheme: light;
  --text: #1b1b1b;
  --muted: #3f4a4f;
  --card: rgba(255, 255, 255, 0.92);
  --accent: #2f4f4f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: url("../img/bricks-brickwall.jpg") center / cover no-repeat fixed;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 16px;
}

.container {
  width: min(960px, 100%);
  display: grid;
  gap: 32px;
}

.profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.profile-card__logo {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  background: #eef2f4;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.profile-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-card__content {
  flex: 1 1 280px;
}

.profile-card__name {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.5rem);
}

.profile-card__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.profile-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.profile-card__links img {
  width: 20px;
  height: 20px;
}

.notice {
  background: rgba(255, 244, 224, 0.95);
  padding: 20px 24px;
  border-radius: 16px;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 720px) {
  .profile-card {
    justify-content: center;
    text-align: center;
  }

  .profile-card__links {
    justify-content: center;
  }
}
