.container-fluid {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
.full-screen {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slide {
  display: none;
}
.navigation {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 9999;
}

body {
  font-family: inherit;
  overflow: hidden;
}

.logo {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.slide-content {
  text-align: center;
  margin-top: 30px;
  padding: 0 50px;
}

.slide-content h1 {
  font-size: 40px;
  /* margin-bottom: 10px; */
}

.slide-content p {
  font-size: 32px;
  color: #666;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: #f8f9fa;
}

.footer p {
  font-size: 12px;
  color: #666;
  margin: 0;
  text-align: center;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.project-card-container {
  width: calc(33% - 20px);
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 20px;
  transition: width 0.3s, height 0.3s;
}

.project-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.project-details {
  display: none;
  margin-top: 10px;
  max-height: 500px;
  overflow-y: auto;
}

.project-title a {
  text-decoration: none;
  color: inherit;
}

.project-card-container.open {
  width: 100%;
  height: 500px;
}
.project-card-container p {
  font-size: 16px;
}

.project-card-container.open .project-details {
  display: block;
}

.fullscreen-container {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 100px;
  display: none;
}

#fullscreen-overlay {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 100px;
  display: none;
}

.fullscreen-image {
  max-width: 100%;
  max-height: 100%;
}

.project-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.project-image {
  max-width: 100%;
  cursor: pointer;
}

.project-description {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .project-card-container {
    width: 100%;
  }

  .project-card-container.open {
    height: auto;
  }

  .slide-content h3 {
    font-size: 18px;
    margin-top: 5px;
  }

  .fullscreen-container {
    padding: 2px;
  }
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .full-screen {
    height: 100vh;
    display: inline-block;
    flex-direction: column;
    align-items: top;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    width: 100%;
  }

  .footer p {
    font-size: 10px;
  }

  .slide-content {
    overflow-y: auto;
    max-height: 70vh;
  }

  .navigation {
    position: fixed;
    left: 50%;
    /* bottom: 20px; */
    margin-bottom: 20px;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    text-align-last: center;
  }
}
