@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

:root {
  --green: #c5f82a;
  --white: #ffffff;
  --grey-700: #333333;
  --grey-800: #1f1f1f;
  --grey-900: #141414;
}

html {
  background-color: var(--grey-900);
  font-size: 14px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--white);
}

.big-weight {
  font-weight: 600;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
}

.container {
  background-color: var(--grey-800);
  border-radius: 10px;
  padding: 50px 40px;
  width: 450px;
  min-width: 320px;
  text-align: center;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-info img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  object-fit: cover;
}

.username-text {
  margin-top: 30px;
  font-size: 1.8rem;
}

.location-text {
  margin-top: 10px;
  color: #c5f82a;
  font-weight: 700;
}

.quote {
  margin-top: 35px;
}

.links-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link {
  display: block;
  background-color: var(--grey-700);
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  width: 100%;
}

.link:hover {
  color: var(--grey-700);
  background-color: #c5f82a;
}

