* {
  box-sizing: border-box;
}

/* ABOUT START */
#about {
  /* border: 0.5px solid var(--fgColor); */
  border-bottom: 1px solid var(--fgColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#aboutTitle {
  font-family: "merivaMono", serif;
  font-size: 1.5rem;
}
#aboutDescription {
  font-family: "merivaMono", serif;
}

#socials {
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
}

#socials img {
  width: 2rem;
  height: auto;
}

/* ABOUT END */

/* GRIDS START */
#mainGrid {
  display: grid;
  grid-template-columns: 5fr 1fr;
  height: 100%;
}
/* GRIDS END */

/* FONTS START */
.projectTitleFont {
  font-size: var(--projectTitlePtSize);
  font-family: "merivaBold", serif;
}
/* FONTS END */

/* PROJECTS START */
.project {
  position: relative;
  /* border: 0.5px solid var(--fgColor); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--fgColor);
  background-color: var(--bgColor);
  overflow-x: hidden;
  width: 100%;
}

.projectTop {
  position: relative;
  width: 100%;
}

.projectTitle {
  width: fit-content;
  position: relative;
  left: 5%;
}

.backBtn {
  position: absolute;
  left: -10%;
}

.contentBody {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.contentRight {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: 1rem;
}

.contentLeft {
  width: auto;
  height: auto;
  position: fixed;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  left: -0.3rem;
  /* padding: 1rem; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  padding: 0rem;
  margin: 0rem;
}

.projectContent {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project::-webkit-scrollbar {
  display: none;
}

.projectBody {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-content {
  position: relative;
  z-index: 2; /* Keep content above the background */
}

.projectIcon {
  top: 30px;
}

.project:hover {
  background-color: none;
  cursor: pointer;
}
/*  */
#projects {
  position: relative;
  height: 100%;
  padding: 1rem;
  /* width: auto; */
  display: flex;
  position: relative;
  flex-direction: column;
  /* justify-content: flex-end; */
  /* align-items: center; */
  /* justify-content: flex-start; */
  -ms-overflow-style: none;
  scrollbar-width: none;

  overflow-y: scroll;
}
#projects::-webkit-scrollbar {
  display: none;
}

/* PROJECTS END */

/* Video Player Stuff */

.player {
  opacity: 0;
  object-fit: cover;
  width: 100%;
  position: relative;
  border-radius: 1rem;
}

video::-webkit-media-controls {
  display: none;
}

/* Video Player Stuff Ends */
