

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 100px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.portfolio-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  z-index: 1;

}

.book-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 13%;

}

.book-card {
  position: relative;
  width: 220px;
  height: 330px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  cursor: pointer;
  background: #000;
}

.book-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.book-card:hover {
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}
.book-card:hover img, .project-tile:hover img {
  transform: scale(1.07);


}

.book-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.book-card:hover .book-overlay, .project-tile:hover .overlay {
  opacity: 1;
}
.twinkle-wrapper {
  position: relative;
  overflow: hidden;
}

/* individual stars */
.twinkle-wrapper .star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50%     { opacity: 0.8; }
}
#symbol img {
  max-width: 125px;
  margin-top: 20px;
}

body, html {
  background-image: url(../img/star-sky.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Nunito", sans-serif;
  max-height: 600px;
  background-color: #121212;
}
header img {
  max-height: 80px;
}

#JS-name img {
  margin-top: 10px;
  /* margin-bottom: 75px; */
  /* max-width: 500px; */
}



#myNavbar {
  display: flex;
  justify-content: center;
  margin-bottom: 0;

}

a:hover {
  cursor: pointer;
}

h2 {
  margin-top: 0;
  font-size: 35px;
  color: #f1bf77;
}
 h2.title {
   text-align: center;
 }

.tag a {
  color: #ddd;
   padding: 0 1rem;
   text-decoration: none;
}

.tag a.active {
color: #07a9ae;
border-bottom: 2px solid #4ecdc4;
}


.tag a:hover {
  color: #fff;
}

#myNavbar a {
  font-size: 18px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: 1;
}

.profile-pic {
  width: 200px;
  margin-top: 100px;
  border-radius: 50%;
  box-shadow: 5px 10px 20px #ccc, 2px 5px 10px #000;
}

.social-media {
  display: flex;
  justify-content: space-around;
  margin: 30px;
}
.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 4px 7px 10px #ccc, 2px 3px 5px #000;
}
.social-icon:hover {
  box-shadow: none;
  /* filter: invert(0.3) sepia(2) hue-rotate(160deg) saturate(13) brightness(0.8); */
  filter: invert(0.4) sepia(1) hue-rotate(10deg) saturate(25) brightness(1);
}
.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -7%;
  padding-bottom: 100px;
  color: #fff;
}
.about-me img {
  z-index: 10001;
}

.caveat-coffee {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.glow-wrap {
  /* display: block;
  position: relative; */
  border-radius: 50%;
  padding: 0.2rem;
  background: radial-gradient(circle, rgba(78,205,196,0.3) 20%, transparent 60%);
  /* animation: pulseGlow 3s ease-in-out infinite; */
}

.glow-wrap img {
  border-radius: 50%;
  display: block;
  width: 180px;
  height: auto;
  box-shadow: 0 0 20px rgba(78,205,196,0.4);
}

/* Pulse animation */
/* @keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(78,205,196,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(78,205,196,0.5);
    transform: scale(1.02);
  }
} */
#left-paragraph,
#right-paragraph {
  margin: 0 40px;
  max-width: 300px;
  padding-top: 40px;
}
#left-paragraph {
  order: 0;
}

#right-paragraph {
  order: 3;
}
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.projects {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.project-pic {
  width: 100%;
  height: 200px;
  /* margin-top: 150px; */
  box-shadow: 5px 10px 20px #111, 2px 5px 10px #000;
}
.project-book {
  width:200px;
  height: auto;
  box-shadow: 5px 10px 20px #111, 2px 5px 10px #000;
}

.frontend-pic {
  margin-top: 25px;
}
.projects img {
  margin: 10px 70px;
}



.project-tile:hover img {
  transform: scale(1.05);
}
.overlay {
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 65px;
  right: 0;
  height: 210px;
  width: 210px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sold-overlay {
  position: absolute;
  bottom: 0;
  left: 180px;
  height: 100px;
  width: 70%;
  transition: 0.5s ease;
  background-color: rgba(255, 255, 255, 0.5);

}
.art {
  text-align: center;
  margin: 10px 0;
}
.frontend {
  top: 25px;
}

.text {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  text-align: center;
}

.art-text {
 position: relative;
 bottom: -30px;
 text-align: center;
 font-weight: 800;
 font-size: 30px;
 color: red;
}
.sm-text {
  font-size: 15px;
}

.project-tile {
  display: flex;
  position: relative;
  width: 300px;
  margin: 30px 15px;
}

section {
  display: flex;
  justify-content: center;
}
/* .project-tile:hover .overlay {
  opacity: 0.7;
  color: #fff;
} */

/* .project-tile:hover span {
  color: #fff
}
.project-tile:hover a {
  color: #fff;
} */
/* .project-tile:hover .project-pic {
  box-shadow: 5px 10px 20px #eee, 2px 5px 10px #fff;
} */

.project-group {
  display: flex;
  flex-direction: column;
}
.prototype {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.ios:hover {
  color: #fff;
}

ul > li > a {
  width: 120px;
  height: 60px;
  margin: 5px;
  text-align: center;
}

ul > li > a:hover {
  font-weight: bold;
  background-color: transparent !important;


}


.tag a:hover {
  /* background-image: url(../img/splatter.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; */
  color: #fff;

}



a:hover {
  text-decoration: none;
}

.ios {
  text-align: center;
}

.myNavbar a {
  font-size: 18px;
}





a {
  text-decoration: none;
  color: #0098b4
}

#testimonials {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin: 72px 0 22px 0;
  letter-spacing: 2px;
}

.testimonials {
  margin: 16px 16px;
  display: flex;
  justify-content: center;

}


#left-quote,
#right-quote {
  margin: 0 40px;
  max-width: 800px;
  padding-top: 20px;
}
#left-quote {
  order: 0;
}

#right-quote {
  order: 3;
}
.created-with {
  text-align: center;
  margin: 15px 0;
  color: #d8aa79;
}
.divider {
  margin-top: 1000px;
  margin-bottom: 20px;
}
.divider a {
color: white;
margin-left: 5%;
font-size: 2rem;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  opacity: 0.6;
  color: #fff;
  z-index: 10002;
}

.footer p {
  padding-top: 10px;
}

.project-main img {
  /* max-width: 400px; */

}
.neg-mar {
  margin-top: -100px;
  margin-bottom: 100px;
}
.mar {
  margin-bottom: 100px;
}
.project-main, .art-board {
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-width: 0;
max-width: 1200px;
margin: 0 auto;
}
.project-main img {
  width: 90%;
}

.art-board img {
  width: 50%;
}



@media screen and (max-width: 891px) {
  .about-me {
    flex-direction: column;
  }
  .profile {
    order: 0;
  }
  #left-paragraph {
    order: 1;
    margin-bottom: 10px;
    max-width: 600px;
  }
  #right-paragraph {
    order: 2;
    max-width: 600px;
  }
}

@media screen and (max-width: 700px)
{
  .testimonials {
    flex-direction: column;
    align-items: center;
  }
  #left-quote {
    order: 1;
    margin-bottom: 10px;

    max-width: 400px;
  }
  #right-quote {
    order: 2;
    max-width: 400px;
  }

  }

  @media screen and (max-width: 200px) {
  #right-parapgraph,
  #left-paragraph, #right-quote, #left-quote {
    padding-top: 40px;
  }
}



@media screen and (max-width: 1450px) {
  .project-main {

  }
}


@media screen and (max-width: 1300px) {

  #symbol {
    width: 150px;
  }


}


@media screen and (max-width: 1010px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 975px) {
  h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 900px) {
  #myNavbar a {
    margin-top: -10px;
  }


}

@media screen and (max-width:950px) {
.banner {
  flex-direction: column;
}



}


@media screen and (max-width: 767px) {
  .icon-bar {
    background-color: #0098b4;
    margin-top: 0;
  }






  .navigation {
    margin: 0 auto;
  }
  .navbar a {
    color: #fff;
  }
}
@media screen and (max-width: 700px) {

  .project {
    flex-basis: 50%;
  }

  .project-pic {

    margin-top: 20px;
    /* margin: 0 auto; */
  }
  .overlay {
    top: 20px;
  }
  .art-board {
    width: 100%;
  }

}


@media screen and (max-width: 1200px) {
.navbar-toggle .icon-bar {
    background-color: #0098b4;
}

}



.btn {
  position: relative;
  text-align: center;
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  border-bottom: 2px solid #ccc;
  box-shadow: 2px 4px 4px #ccc;
}


.btn:hover {
  background-color: rgba(255, 167, 3, 1);
  opacity: 1;
  color: white;
  cursor: pointer;
}
