:root {
  --backround-colour: #141416;
  --card-backround: #1f1f1f;
  --button-backround: #2e2e2e;
  --primary-text-colour: #ededed;
  --secondary-text-colour: #a1a1aa;
  --green-text-color: #bdd962;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--backround-colour);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-card {
  background-color: var(--card-backround);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.5rem;
  width: 370px;
  height: 560px;
}

img#profile {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  margin-top: 0.5rem;
  margin-bottom: 0.1rem;
}

h1 {
  color: var(--primary-text-colour);
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 1.5rem;

}

.bio {
  color: var(--secondary-text-colour);
  text-align: center;
  font-weight: 200;
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.locatedin {
  color: var(--green-text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
}

.socials {
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  display: block;
  padding: 0.6rem 1rem 0.6rem 1rem;
  width: 20rem;
  margin: 1rem;
  border-radius: 8px;
  background-color: var(--button-backround);
  color: var(--primary-text-colour);
  font-weight: 200;
  font-size: 1rem;
  text-align: center;
}
