:root {
  --yellow: #c5f82a;
  --white: #fff;
  --dark: #141414;
  --grey: #1F1F1F;
  --light: #333333;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
	background-color: var(--dark);
}

#app {
	height: 595px;
	width: 384px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 30px;
  background: var(--grey);
  border-radius: 15px;
	border: 1px solid #111111;
}

.avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.location {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow)
}

.link-button {
  width: 100%;
  height: 45px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  border-radius: 8px;
  background-color: var(--light);
}

.link-button:hover {
  color: var(--dark);
  background-color: var(--yellow);
}
