@font-face {
  font-family: "gg sans SemiBold Regular";
  font-style: normal;
  font-weight: normal;
  src: local("gg sans SemiBold Regular"),
    url("../fonts/ggsans.woff") format("woff");
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  background-color: #1a1c2b;
  position: relative;
}

::-webkit-scrollbar {
  width: 14px;
  z-index: 3;
}

::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 7px;
  border: 2px solid #1a1c2b;
  z-index: 3;
}

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

::-webkit-scrollbar-track {
  background-color: #1a1c2b;
  z-index: 3;
}

::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}

.frontPageDiv {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.voidem-text {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.2em;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.075em;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.profilePicture {
  width: 15.625em;
  height: 15.625em;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 0 1.875em 0.3125em rgba(255, 255, 255, 0.3);
}

.profilePicture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.particle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75));
}

.social-images {
  margin-top: 0.8em;
  display: flex;
  z-index: 2;
}

.social-image {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  margin: 0 0.75em;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.social-image:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.social-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nextPage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 2;
  padding: 2em 0;
}

.timeline {
  width: 70%;
  max-width: 50em;
  font-family: "gg sans SemiBold Regular";
}

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.9375em;
  margin-bottom: 1.5625em;
}

.timeline-list {
  font-size: 1.125em;
  margin-left: 4.0625em;
}

.timeline-item {
  position: relative;
}

.timeline-item:not(:last-child) {
  margin-bottom: 1.25em;
}

.timeline-item-title {
  font-size: 1.5em;
  line-height: 1.3;
  margin-bottom: 0.4375em;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.timeline-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.timeline-item-title a:hover {
  color: #ccd573;
}

.timeline-list span {
  color: #ccd573;
  line-height: 1.6;
  text-shadow: 0 0 8px rgba(204, 213, 115, 0.3);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2.5em;
  width: 0.125em;
  height: 100%;
  background-color: rgb(140, 140, 140);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.6875em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #ccd573;
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(204, 213, 115, 0.5);
}

.timeline-text {
  color: rgb(220, 220, 220);
  line-height: 1.6;
}

