*,
::before,
::after {
  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-family: "Inter", sans-serif;
  width: 100%;
  height: 100vh;
  background-color: var(--Grey900);
  color: var(--White);
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile {
  width: 85%;
  background-color: var(--Grey800);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 25px;
  font-size: 14px;
  border-radius: 12px;
}

.profile__photo {
  align-self: center;
  width: 30%;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 25px;
}

.profile__name {
  font-size: 24px;
  margin-bottom: 5px;
}

.profile__nationality {
  color: var(--Green);
  font-weight: 600;
  margin-bottom: 30px;
}

.profile__copy {
  margin-bottom: 25px;
  font-weight: 300;
}

.profile__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile__link {
  background-color: var(--Grey700);
  color: var(--White);
  text-decoration: none;
  padding: 10px 0;
  border-radius: 6px;
  font-weight: 700;
}

.profile__link:hover {
  background-color: var(--Green);
  color: var(--Grey900);
}

@media screen and (min-width: 1440px) {
  .profile {
    max-width: 325px;
  }
}
