/*
$font-family-headlines: "Fira Sans", sans-serif;
$font-family-all: "Noto Sans", sans-serif;
*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe Nue", Roboto, Oxygen, Ubuntu;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

table {
  width: 100%;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

button {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe Nue", Roboto, Oxygen, Ubuntu;
}

/*
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
    */
fieldset {
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe Nue", Roboto, Oxygen, Ubuntu;
}

body {
  background-color: #000;
}

.header {
  background-color: #000;
}

.header__nav {
  position: relative;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  color: white;
  margin: auto;
  max-width: 1100px;
}

.header__title {
  letter-spacing: 1px;
  font-size: 1.6rem;
  font-weight: 600;
}

.header__description {
  position: relative;
  text-align: center;
  font-size: 1rem;
}

.header__description::after {
  content: ">";
  position: absolute;
  top: 0%;
  right: 15px;
  color: #18d26e;
}

.header__description::before {
  content: "<\\";
  position: absolute;
  top: 0%;
  left: 15px;
  color: #18d26e;
}

.header__menu-btn {
  background-color: #000;
  border: 1px solid #18d26e;
  border-radius: 0.3rem;
  padding: 0.2rem;
  cursor: pointer;
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 1.5rem;
}

.header__nav-link {
  color: white;
  position: relative;
  font-weight: 600;
  font-size: 1.1rem;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 60%;
  background-color: #18d26e;
  transition: transform 0.3s ease-in;
  transform: scaleX(0);
  transform-origin: bottom right;
}

.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header__nav-link-active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header__dropdown {
  display: none;
}

@media screen and (max-width: 700px) {
  .header__nav-list {
    display: none;
  }
  .header__dropdown.active {
    position: absolute;
    top: 56px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    background-color: #000;
    z-index: 99999;
  }
  .header__dropdown-link {
    color: white;
  }
  .header__dropdown-item {
    padding: 0.5rem;
  }
  .header__dropdown-item:last-child {
    border-bottom: 1px solid #e7e9eb;
  }
  .header__dropdown-item:hover {
    background-color: #18d26e;
  }
  .header__menu-btn {
    background-color: #000;
    display: inline-block;
    overflow: hidden;
  }
  .header__menu-btn:hover,
  .header__menu-btn:active {
    background-color: #18d26e;
  }
  .header__menu-btn:hover .header__menu-icon,
  .header__menu-btn:active .header__menu-icon {
    filter: brightness(0);
  }
}
.about__top {
  background-color: #000;
  color: white;
  padding: 3rem 0;
  animation-name: fader;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.about__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.about__description {
  text-align: center;
  width: 60ch;
  margin: auto;
  line-height: 1.5;
  font-size: 1.1rem;
}

.about__top + .about__breadcrumb {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: white;
}

.about__breadcrumb p {
  display: block;
  margin: auto;
  max-width: 1100px;
  padding: 1rem 1.5rem;
}

.about__breadcrumb--active {
  color: #18d26e;
}

.about__content {
  max-width: 1100px;
  margin: 2rem auto;
}

.about__grid {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  grid-template-columns: 0.4fr 1fr;
  margin: auto;
}

.about__image-container {
  text-align: center;
}

.about__image {
  display: block;
  margin: auto;
}

.about__info {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 2rem;
  padding: 0.5rem 1.5rem;
}

.about__info-title {
  font-size: 1.9rem;
  font-weight: 600;
  text-transform: capitalize;
}

.about__info-subtitle {
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: justify;
}

.about__info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about__info-item {
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.about__info-item b {
  letter-spacing: 1px;
}

.about__info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../../src/assets/icons/chevron.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.about__info a {
  color: white;
  text-decoration: none;
}

.about__stats {
  max-width: 1100px;
  margin: 3rem auto;
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
}

.about__card {
  background-color: rgba(255, 255, 255, 0.15);
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
  flex: 1;
  position: relative;
}

.about__card-number {
  font-size: 2rem;
}

.about__card-text {
  font-size: 1.2rem;
}

.about__card-figure {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 50%);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
}

.about__card-image {
  height: 24px;
  width: 24px;
}

/* ABOUT SKILLS*/
.about__skills {
  max-width: 1100px;
  margin: 48px auto;
}

.about__skills-description {
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 1rem;
  position: relative;
}

.about__skills-description::after {
  position: absolute;
  top: 50%;
  left: 65px;
  width: 110px;
  height: 1px;
  background-color: #18d26e;
  content: "";
}

.about__skills-title {
  color: white;
  text-transform: uppercase;
  font-size: 1.9rem;
  position: relative;
  font-weight: 600;
  margin: 0 1rem;
  margin-bottom: 2rem;
}

.about__skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__skills-skill {
  display: flex;
  flex-direction: column;
}

.about__skills-info {
  display: flex;
  justify-content: space-between;
  margin: 0 1rem;
}

.skill-name,
.skill-value {
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
}

.about__skills-bar {
  margin: 0 1rem;
}

progress {
  width: 100%;
  height: 10px;
  appearance: none;
  border: none;
  border-radius: 0px;
  overflow: hidden;
}

progress::-webkit-progress-bar {
  background-color: rgba(255, 255, 255, 0.15);
}

progress::-webkit-progress-value {
  background-color: #4caf50;
  transition: width 0.4s ease;
}

progress::-moz-progress-bar {
  background-color: #4caf50;
}

/* About Technologies*/
.about__technologies {
  max-width: 1100px;
  margin: 48px auto;
}

.about__technologies-description {
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 1rem;
  position: relative;
}

.about__technologies-description::after {
  position: absolute;
  top: 50%;
  left: 145px;
  width: 110px;
  height: 1px;
  background-color: #18d26e;
  content: "";
}

.about__technologies-title {
  color: white;
  text-transform: uppercase;
  font-size: 1.9rem;
  position: relative;
  font-weight: 600;
  margin: 0 1rem;
  margin-bottom: 2rem;
}

.about__technologies-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}

.about__technologies-item {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1.5rem;
}

.about__technologies-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.about__technologies-info > div {
  height: 30px;
  width: 30px;
}

.technology-image {
  height: 24px;
  width: auto;
}

.technology-name {
  font-size: 1.4rem;
  letter-spacing: 0.8px;
  font-weight: 400;
}

@media screen and (max-width: 830px) {
  .about__info {
    gap: 1rem !important;
  }
  .about__info-title {
    font-size: 1.7rem;
  }
  .about__info-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 700px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__stats {
    flex-direction: column;
    gap: 2rem;
  }
  .about__card {
    flex-basis: 150px;
    gap: 1rem;
  }
  .about__skills-container {
    grid-template-columns: 1fr;
  }
  .about__technologies-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .about__description {
    width: 44ch;
    font-size: 1rem;
  }
  .about__technologies-container {
    grid-template-columns: 1fr;
  }
  .about__skills-description::after {
    left:75px;
  }
  .about__technologies-description::after {
    left:155px;
  }
}
@media screen and (max-width: 380px) {
  .about__description {
    width: 35ch;
    font-size: 1rem;
  }
}
@keyframes fader {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.resume__top {
  background-color: #000;
  color: white;
  padding: 3rem 0;
  animation-name: fader;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.resume__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.resume__description {
  text-align: center;
  width: 60ch;
  margin: auto;
  line-height: 1.5;
  font-size: 1.1rem;
}

.resume__top + .resume__breadcrumb {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: white;
}

.resume__breadcrumb p {
  display: block;
  margin: auto;
  max-width: 1100px;
  padding: 1rem 1.5rem;
}

.resume__breadcrumb-item--active {
  color: #18d26e;
}

.resume__main {
  margin: 48px auto;
  padding: 0 1.5rem;
  max-width: 1100px;
  color: white;
}

.resume__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.resume__item-inner {
  padding-bottom: 1.5rem;
  border-left: 2px solid #18d26e;
  padding-left: 1rem;
  position: relative;
}

.resume__item-inner::before {
  height: 17px;
  width: 17px;
  border: 2px solid #18d26e;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 0;
  content: "";
}

.resume__heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1rem 0;
  color: white;
}

.resume__item-title {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
}

.resume__list-item {
  list-style-type: disc;
  padding-left: 1rem;
}

.resume__item-subtitle + p {
  margin-bottom: 0.8rem;
}

.resume__item-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
}

.resume__item-title,
.resume__item-subtitle,
.resume__list-item {
  margin-bottom: 0.8rem;
}

.resume__list {
  list-style-position: inside;
}

.resume__item-text {
  line-height: 1.5;
}

@media screen and (max-width: 700px) {
  .resume__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .resume__description {
    width: 44ch;
    font-size: 1rem;
  }
}
@media screen and (max-width: 380px) {
  .resume__description {
    width: 35ch;
    font-size: 1rem;
  }
}
.footer {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer__container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__copyright {
  text-align: center;
  color: white;
  font-size: 0.8rem;
}

.footer__copyright span {
  color: #18d26e;
}

.contact__top {
  background-color: #000;
  color: white;
  padding: 3rem 0;
  animation-name: fader;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.contact__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact__description {
  text-align: center;
  width: 59ch;
  margin: auto;
  line-height: 1.5;
  font-size: 1.1rem;
}

.contact__top + .contact__breadcrumb {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: white;
}

.contact__breadcrumb p {
  display: block;
  margin: auto;
  max-width: 1100px;
  padding: 1rem 1.5rem;
}

.contact__breadcrumb--active {
  color: #18d26e;
}

.contact__main,
.contact__socials {
  margin: 3rem 0;
}

.contact__main-description,
.contact__socials-description {
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  max-width: calc(1100px - 3rem);
}

.contact__main-description::after,
.contact__socials-description::after {
  position: absolute;
  top: 50%;
  left: 65px;
  width: 110px;
  height: 1px;
  background-color: #18d26e;
  content: "";
}

.contact__socials-description::after {
  left: 75px;
}

.contact__main-title,
.contact__socials-title {
  color: white;
  text-transform: uppercase;
  font-size: 1.5rem;
  position: relative;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 1rem;
  max-width: calc(1100px - 3rem);
}

.contact__form {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}

.contact__form-field--split {
  display: flex;
  gap: 1rem;
}

.contact__input {
  width: 100%;
  height: 2.6875rem;
  padding: 0.625rem 0.75rem;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
  font-family: inherit;
  font-size: inherit;
  color: white;
}

.contact__textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
  font-family: inherit;
  font-size: 1rem;
  display: block;
  color: white;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: 1px solid #18d26e;
  color: white;
}

.contact__button {
  margin: 1rem 0;
  font-size: 1rem;
  font-family: inherit;
  padding: 0.45rem 1rem;
  background-color: #18d26e;
  color: #000;
  border: none;
}

.contact__button:hover,
.contact__button:active {
  color: white;
}

.contact__socials-list {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}

.contact__socials-item {
  display: flex;
  gap: 1rem;
}

.contact__socials-icon {
  width: 24px;
  height: 24px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.contact__socials-image {
  background-color: #18d26e;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__socials-content {
  display: flex;
  flex-direction: column;
  color: white;
}

.contact__socials-label {
  font-size: 1rem;
  font-weight: 500;
}

.contact__socials-link {
  color: #18d26e;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .contact__main-description,
  .contact__main-title,
  .contact__socials-description,
  .contact__socials-title {
    max-width: 100%;
    padding-left: 1.5rem;
  }
  .contact__socials-description::after {
    left: 100px;
  }
  .contact__main-description::after {
    left: 90px;
  }
}
@media screen and (max-width: 830px) {
  .contact__form-field--split {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact__description {
    width: 44ch;
    font-size: 1rem;
  }
  .contact__technologies-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 380px) {
  .contact__description {
    width: 35ch;
    font-size: 1rem;
  }
}
.portfolio__top {
  background-color: #000;
  color: white;
  padding: 3rem 0;
  animation-name: fader;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.portfolio__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.portfolio__description {
  text-align: center;
  width: 60ch;
  margin: auto;
  line-height: 1.5;
  font-size: 1.1rem;
}

.portfolio__top + .portfolio__breadcrumb {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: white;
}

.portfolio__breadcrumb ol {
  display: block;
  margin: auto;
  max-width: 1100px;
  padding: 1rem 1.5rem;
}

.portfolio__breadcrumb li {
  display: inline-block;
}

.portfolio__breadcrumb-link {
  color: white;
}

.portfolio__breadcrumb--active {
  color: #18d26e;
}

.portfolio__main {
  margin: 48px auto;
  padding: 0 1.5rem;
  max-width: 1100px;
  min-height: 49vh;
  color: white;
}

.portfolio__list {
  text-align: center;
  margin-bottom: 1.5rem;
}

.portfolio__list-item {
  display: inline-block;
  margin: 0 0.3rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}

.portfolio__list-item:hover,
.portfolio__list-item:active {
  color: #18d26e;
}

.portfolio__list-item--active {
  color: #18d26e;
}

.portfolio__projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.portfolio__project {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.portfolio__project > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}

.portfolio__project:hover .portfolio__project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio__project:hover > img {
  transform: scale(1.1);
}

.portfolio__project-info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1.5rem;
  display: none;
}

.portfolio__project-title span {
  color: white;
  padding: 0.2rem 0.6rem;
  background-color: #18d26e;
}

.portfolio__project-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.portfolio__project-link > img {
  color: white;
  width: 28px;
  height: 28px;
}

.portfolio__project-website-link {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .portfolio__projects {
    display: grid;
    grid-template-columns: 500px;
    justify-content: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .portfolio__description {
    width: 44ch;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .portfolio__projects {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 380px) {
  .portfolio__description {
    width: 35ch;
    font-size: 1rem;
  }
}
.modal__window {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__wrapper {
  position: relative;
  color: white;
  padding: 1rem;
}

.modal__title {
  background-color: white;
  color: black;
  padding: 1rem;
  text-align: center;
}

.modal__img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.modal__close {
  color: #18d26e;
  position: absolute;
  top: 40px;
  right: 40px;
  border: none;
  font-size: 1rem;
  transform: scale(1.5);
  background-color: transparent;
  cursor: pointer;
}

.portfolio__details__top {
  background-color: #000;
  color: white;
  padding: 3rem 0;
  animation-name: fader;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.portfolio__details__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.portfolio__details__description {
  text-align: center;
  width: 60ch;
  margin: auto;
  line-height: 1.5;
  font-size: 1.1rem;
}

.portfolio__details__top + .portfolio__details__breadcrumb {
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  color: white;
}

.portfolio__details__breadcrumb ol {
  display: block;
  margin: auto;
  max-width: 1100px;
  padding: 1rem 1.5rem;
}

.portfolio__details__breadcrumb li {
  display: inline-block;
}

.portfolio__details__breadcrumb-link {
  color: white;
}

.portfolio__details__breadcrumb--active {
  color: #18d26e;
}

.project__container {
  margin: 48px auto;
  padding: 0 1.5rem;
  max-width: 1100px;
  min-height: 49vh;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.project__info {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  margin: 1rem;
  line-height: 1.5;
}

.project__info + div {
  padding: 1rem;
  margin: 1rem;
  line-height: 1.5;
}

.project__info-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.project__info-item {
  margin: 0.5rem 0;
}

.project__description {
  color: white;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-indent: 1rem;
  text-align: justify;
}

.project__description strong {
  color: #18d26e;
}

.project__description-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
}

.project__carousel {
  padding-top: 1.05rem;
}

.project__github__link {
  color: #18d26e;
  text-decoration: underline;
}

/* Dodatak */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #18d26e;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 980px) {
  .project__container {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .portfolio__details__description {
    width: 44ch;
    font-size: 1rem;
  }
}
@media screen and (max-width: 380px) {
  .portfolio__details__description {
    width: 35ch;
    font-size: 1rem;
  }
}
.custom__message__page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.custom__message {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 2rem;
  margin-top: 3rem;
}

.custom__message-title {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.7px;
}

.custom__message-description {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.custom__message-link {
  color: #18d26e;
  display: block;
  font-size: 1rem;
}

.custom__message-link:hover,
.custom__message-link:active {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
