:root {
  --color-1: #84ACE0;
  --color-2: #8a7cbe;
  --color-3: #848FE1;
  --color-4: #84C9E0;
  --color-5: #B584E0;
  --bg: #C8CBE3;
}

body {
  background-color: var(--bg);
  
  font-family: system-ui, -apple-system, sans-serif;
}

.navbar {
  background-color: var(--color-1);
  padding: 1rem 2rem;
  border-bottom: 2px solid var(--color-2);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.3s;
  padding: 1rem 4rem;
  display: block;
}

.nav-links a:hover {
  color: var(--color-5);
}

.top {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("imag/image.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: 2px solid var(--color-1);
  color: aliceblue;
  font-size: 20px;
  padding: 4rem 2rem;
  cursor: pointer;
}

.top-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.top-link:hover h1 {
  color: var(--color-5);
  transition: color 0.3s;
}

.top h1 {
  margin: 0;
  font-size: 3rem;
}

.main {
  background-color: var(--color-2);
  border: 2px solid var(--color-1);
  min-height: 1000px;
  padding: 2rem;
}

.aboutme {
  background-color: rgb(255, 228, 196);
  width: 250px;
  text-align: center;
  color: rgb(43, 43, 43);
  border: 5px outset rgb(255, 226, 190);
  padding: 1rem;
  float: left;
  margin-right: 2rem;
}

.profile-img {
  width: 100px;
  height: 300px;
  display: block;
  margin: 0 auto 1rem;
}

.aboutme h2 {
  margin-top: 0;
}

.aboutme ul {
  list-style-position: inside;
  text-align: left;
}

.hi {
  margin-left: 0;
  color: #ffffff;
  font-size: 20px;
  overflow: auto;
  
}

.hi h6 {
  font-size: 10px;
  color: rgb(255, 255, 255);
}

.hi a {
  text-decoration: none;
  color: var(--color-4);
}

.content-section {
  color: white;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  color: white;
}

.gallery-img {
  flex: 0 0;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border: 2px solid var(--color-1);
  border-radius: 8px;
  object-fit: cover;
  color: white;
}

.youtubers {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  color: white;
}

.youtubers a {
  color: var(--color-4);
  text-decoration: none;
}

.youtubers a:hover {
  color: var(--color-1);
}

.friend-cris {
  background: linear-gradient(to left, #000000, #ffffff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  width: fit-content;
}

.friend-melong {
  color: #7FFF7F;
  font-weight: 500;
}

