/* =============== GLOBAL =============== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300..800;1,300..800&display=swap');

/* =============== BASIC =============== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #102F1C;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  font-weight:300;
  font-size:1rem;
}

/* =============== SCROLL BAR =============== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #444;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 3px solid #444;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}

/*=============== LAYOUT ===============*/
body {
  scrollbar-width: thin;
  scrollbar-color: #888 #444;
}

.container {
  width: 90%;
  max-width: 44rem;
  margin: 2rem auto;
}

/*=============== HEADAR ===============*/
.head-section {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

.head-section img {
  margin-top:0.5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.head-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight:400;
}

.head-section p {
  font-size: 1.1rem;
}

.bio {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.bio p {
  margin-bottom: 1rem;
}

/*=============== SOCIAL LINKS ===============*/
.social-links ul {
  list-style: none;
}

.social-links ul li {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: background 0.25s ease;
  border: 1px solid #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.social-links ul li:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-links ul li a {
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 0.5rem 0.6rem;
  text-decoration: none;
}

.social-links ul li a i {
  font-size: 1.6rem;
  margin-right: 0.6rem;
}

.social-links ul li a span {
  flex: 1;
  font-size: 0.9rem;
}

.social-links ul li a span h3 {
  font-weight:400;
}

.sprout {
  margin-top:0.4em;
  text-align:center;
  color:#146B32;
  font-size:1.3em;
}
