body::-webkit-scrollbar {
  background-color: transparent;
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(11, 24, 37);
  border-radius: 10px;
}

#main_content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: auto;
  gap: 50px;
  min-height: 100%;
  grid-area: 1 / 2 / 1 / 2;
}

#main_title {
  font-weight: 750;
  color: var(--accent2);
  font-size: 60px;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 10px;
}

#carousel_holder {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: start;
}

#carousel_rotator {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 5px;
  position: relative;
  width: auto;
}

#projects_carousel {
  width: 800px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.1s
}

#projects_carousel:hover {
  transform: scale(1.02);
}

.project_cards {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: 0.25s all;
  border-radius: 10px;
  overflow: hidden;
}

.project_cards:hover {
  transform: scale(1.02);
}

.project_cards:hover .project_details {
  opacity: 0;
}

.project_cards:hover .project_thumbnails {
  filter: blur(0) brightness(1);
}

.project_details {
  padding: 40px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, black 15%, transparent 100%);
  border-radius: 10px;
  gap: 4px;
  transition: 0.25s opacity;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 2;
}

.project_details a {
  text-decoration: none;
}

.project_details h1 {
  color: var(--accent2);
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  transition: 0.1s all;
  cursor: pointer;
}

.project_details p {
  color: white;
  font-size: 20px;
  font-weight: 650;
  text-align: center;
  margin: 0;
}

.project_thumbnails {
  width: 800px;
  height: auto;
  border-radius: 10px;
  user-select: none;
  z-index: 1;
  filter: blur(3px) brightness(1.05);
}

.carousel_arrows {
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s all;
  margin: auto 0;
}

.carousel_arrows i {
  color: white;
  font-size: 55px;
}

.carousel_arrows:hover {
  transform: scale(1.15);
}

.carousel_arrows:active {
  transform: scale(1);
}

.carousel_checkers {
  position: absolute;
  display: none;
}

#radio1:checked ~ .project_cards {
  transform: translateX(0); /* Show project1 */
}

#radio2:checked ~ .project_cards {
  transform: translateX(-100%); /* Show project2 */
}

#radio3:checked ~ .project_cards {
  transform: translateX(-200%); /* Show project3 */
}

#radio4:checked ~ .project_cards {
  transform: translateX(-300%); /* Show project3 */
}

#carousel_button_holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.carousel_buttons {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  user-select: none;
  cursor: pointer;
  border: 2px solid white;
  margin: 0;
  appearance: none;
  outline-offset: 0;
  transition: 0.1s all;
}

.carousel_buttons:checked {
  width: 17px;
  height: 17px;
  cursor: pointer;
  outline: 0;
  background-color: white;
}

.carousel_buttons:hover {
  transform: scale(1.15);
}

#temporary_title {
  color: white;
  
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
}

#temporary_title i {
  color: red;
  font-size: 60px;
}