body {
  margin: 0;
  padding: 40px;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 46%, rgba(242, 242, 242, 1) 77%, rgba(207, 207, 207, 1) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: block;
}

.container {
  margin-top: 55px;
  text-align: center;
}

/* BEGIN BACKGROUND IMAGE BEHIND INDEX NAME */

.title-box {
  position: relative;
  width: 900px;
  height: 72px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* the actual image, you know */
.title-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://bricklander.neocities.org/funkybanner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

/* white fadeouts on the sides */
.title-box::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to right, white 0%, transparent 15%, transparent 85%, white 100%);
  z-index: 1;
}

/* text don't go behind the image */
.title {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: #444;
}

/* END BACKGROUND IMAGE BEHIND INDEX NAME */

.navigation {
  margin: 20px auto;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.1));
  max-width: 1000px;
}

.navigation a {
  color: #888;
  text-decoration: none;
  margin: 0 20px;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.1));
}

.navigation a:hover {
  color: black;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.1));
}

.container_about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

.lilligant {
  max-height: 600px;
  height: auto;
  width: auto;
  margin-top: 50px;
}

.blurb_about {
  font-size: 18px;
  line-height: 1.5;
  max-width: 1200px;
  white-space: pre-wrap; /* I DO STILL THINK LINEBREAKS ARE FOR THE WEAK HOWEVER I HAVE TO USE THEM DUE TO THE NEW UI */
  
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  user-select: text;
}

.blurb_about * {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.socials-section {
  text-align: center;
  margin-top: 60px;
}

.socials-section h2 {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 30px;
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 110px;
}

.social img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border: none;
}

.social-label {
  margin-top: 10px;
  font-size: 14px;
}