* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --process-cyan: hsla(194, 94%, 44%, 1);
  --process-cyan-2: hsla(194, 80%, 48%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --platinum: hsla(195, 15%, 84%, 1);
  --midnight-green: hsla(197, 54%, 21%, 1);

  --background: var(--white);
  --text-color: var(--midnight-green);
  --stroke-color: var(--midnight-green);
  --surface-color: var(--process-cyan);
  --link-color: var(--midnight-green);
}

body {
  background: var(--background);
}

body * {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
}

#container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 588px;

  margin-inline: auto;
  padding-inline: 24px;

  margin-bottom: 2em;
}

header {
  display: grid;
}

.header-image {
  width: 100%;
  /* padding: 0 1em; */
  /* border-radius: 8px; */
}
.header-profile {
  display: grid;
  justify-items: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--process-cyan);
  margin-top: 2em;
  margin-bottom: 1em;
  object-fit: contain;
}

h1 {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
  margin-top: -2rem;
  /* padding: 1em; */
}

.button {
  display: inline-block;
  background: var(--surface-color);
  border: none;
  border-radius: 8px;

  margin-top: 32px;
  padding: 15px 32px;

  color: var(--text-color);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  filter: brightness(1.1);
}

/* Links */

#contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contacts li a {
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--midnight-green);

  font-weight: 500;

  text-decoration: none;

  transition: background 0.2s;
}

#contacts li a:hover {
  filter: brightness(1.1);
  outline: 1.5px solid var(--text-color);
}

/* Social Links */
#social-links {
  display: flex;
  justify-content: center;

  font-size: 32px;
}

#social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  padding: 16px;

  transition: background 0.2s;
}

#social-links a:hover {
  background: var(--highlight-color);
}

/* logo */

#logo {
  text-align: center;
}

#logo img {
  width: 220px;
  object-fit: contain;
  border-radius: 8px;
}

/* qrcode */
/* .qrcode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;

  padding: 24px;
  text-align: center;
} */

.qrcode {
  margin-inline: auto;
  border-radius: 0.5em;

  padding: 0.5em;
  outline: 4px solid black;
}

.qrcode img:first-child {
  margin-bottom: 2em;
}
