header {
}

body {
  background-color: white;
  color:  rgb(24, 24, 24);
  }

.btn {
  background-color: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 16px;
  max-width: 50vw;
}


/*HERO*/
.hero {
  position: relative;
  height: 100vh;
  background-color: rgb(24, 24, 24);
  display: flex;
  justify-content: center; 
  align-items: center;
  text-align: center;
}

.hero h1 {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 8vw;
  font-weight: bold;
  color: rgb(235, 220, 196);
  margin: 0;
  margin-left: 5vw;
}

.hero-text {
  display: inline-block;
}

.flip-squiggle {
  display: inline-block;
  transform: scaleX(-1);
  margin-left: 0.05em;
  position: relative;
  top: 0;
}

.flip-pencil {
  display: inline-block;
  transform: scaleX(-1);
  margin-left: 0.05em;
  position: relative;
  top: -0.45em;
}

.hero h1 span.l {
  color: transparent;
  -webkit-text-stroke: 2px rgb(235, 220, 196);
}

  
/* HERO ARROW TO SCROLL DOWN */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-color: rgb(24, 24, 24);
  text-align: center;
}

.scroll-down-bar {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 130px;
  background-color: rgb(235, 220, 196);
  border-radius: 2px;
  z-index: 100;
  display: block;
  animation: bounce 2s infinite;
}

.scroll-down-bar::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgb(235, 220, 196);
  border-bottom: 2px solid rgb(235, 220, 196);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}
/*END OF HERO*/

/* NAVBAR*/
#menu {
  transition: top 0.3s;
  width: 100vw;
  background-color: rgba(24,24,24); 
}
.navbar-dark .navbar-nav .nav-link {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: rgb(235, 220, 196);
}

/*NAVBAR*/
  

/*PROJECTS GALLERY*/
.projects{
  height: 100vh;
  width: 100%;                
  background-color: rgba(18, 18, 18, 0.712);
  padding: 0;
  }

.projects-content {
  max-width: 1000px;
  height: 100vh;
  margin: 0 auto;
  color: rgb(235, 220, 196);
  text-align: center;
}

#projects {
  color: black;
  font-family: Arial, sans-serif;
  font-size: 8vw;
  font-weight: bold;
}

.movieticketkiosk-vid {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}

.movieticketkiosk-vid:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
/*END OF PROJECTS GALLERY*/


/*EDUCATION*/
.education{
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  }

.education-content {
  max-width: 1000px;
  margin: 0 auto;
  color: rgb(235, 220, 196);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: black;
}

#education {
  color: black;
  font-family: Arial, sans-serif;
  font-size: 5vw;
  font-weight: bold;
}
/*END OF EDUCATION*/

/* SKILLS */
#skills {
 font-family: Arial, sans-serif;
 font-weight: bold;
 font-size: 5vw;
}

.skill-list {
  max-height: 0;
  overflow: hidden;
  margin-top: 0.5rem;
  transition: max-height 0.3s ease;
}

.skills-item.active .skill-list {
  max-height: 500px;
}

.list-group-item {
  margin: 0 auto;
  text-align: center;
  border: none;
  border-radius: 0;   
}
/* END OF SKILLS*/


/*CONTACT INFO SECTION*/
.thanks-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgb(24, 24, 24);
  color: rgb(235, 220, 196);
  font-family: Arial, sans-serif;
  text-align: center;
}

.thanks-heading {
  font-size: 8vw;
  font-weight: bold;
  margin-bottom: 2rem;
}

.highlight {
  color: transparent;
  -webkit-text-stroke: 2px rgb(235, 220, 196);
  text-stroke: 2px rgb(235, 220, 196);
}

.thanks-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 3vw;
  color: rgb(235, 220, 196);
  text-decoration: none;
}

.thanks-email .email-icon {
  font-size: 3vw;
}

.thanks-email:hover {
  color: white;
}

/*END OF CONTACT INFO*/