* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --Green: hsl(75, 94%, 57%);
  --White: hsl(0, 0%, 100%);
  --Grey700: hsl(0, 0%, 20%);
  --Grey800: hsl(0, 0%, 12%);
  --Grey900: hsl(0, 0%, 8%);
}

body {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  height: 100vh;
}

main.container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Grey900);
  height: 100vh;
}

section.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 320px;
}

.inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--Grey800);
  border-radius: 1rem;
  height: auto;
  margin: 2rem 0;
  padding: 1.5rem;
}

img {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  margin-bottom: 2rem;
}

h1 {
  color: var(--White);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

h2 {
  color: var(--Green);
  font-size: 1rem;
  margin-bottom: 2rem;
}

p {
  color: var(--White);
  margin-bottom: 1.75rem;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

ul.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 17rem;
}

li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
  background-color: var(--Grey700);
}

li:last-child {
  margin-bottom: 0;
}

li:hover {
  background-color: var(--Green);
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--White);
  font-weight: 600;
}
