.experience-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.experience-page-title{
  margin-top: 100px;
  font-family: Arial;
  font-weight: 800;
  font-size: 74px;
  background: linear-gradient(
    90deg,
    rgb(32, 227, 255),   
    rgb(107, 232, 200) 35%,  
    rgb(207, 226, 122) 65%, 
    rgb(255, 212, 0)    
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.main-category-button {
  font-family: Arial;
  display: flex;
  align-items: center;
  font-size: 58px;
  border: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  margin-bottom: 20px;
  transition: display 0.3s ease-in-out,
    pointer-events 0.3s ease-in-out;
}

.main-category-button:hover .main-category-image {
  display: none;
  pointer-events: none;
}

.main-category-button:hover .main-category-image-glow,
.main-category-button:hover .main-category-education-image-glow {
  display: inline-block;
  pointer-events: all;
}

.text-decoration{
  text-decoration: underline;

}


.main-category-image,
.main-category-image-glow,
.main-category-education-image-glow {
  height: 100px;
  width: auto;
  margin-top: 0;
}

.main-category-text {
  margin-left: -25px;
 
}

.glow-text{
  transition: text-shadow 0.3s ease-in-out;
}

.glow-text:hover{
  text-shadow: 
    0 0 10px white, 
    0 0 30px rgb(70, 230, 228),
    0 0 60px rgb(70, 230, 228) 
}



.inner-category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.experience-button{
  display: flex;
  justify-content: start;
  align-items: center;
  border:none;
  color: white;
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 20px;
}


.image-container {
  width: 250px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-logo{
  height: 50px;
  width: 200px;
  
}

.html-css-logo{
  height: 100px;
  width: 150px;
}

.javascript-logo{
  height: 100px;
}

.sce-logo {
  margin-left: 18px;
}
.inner-category-text{
  font-family: Arial;
  font-size: 40px;
}

.experience-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}

.experience-text{
  margin-bottom: 30px;
  font-family: Arial;
  font-size: 16px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.experience-text p {
  margin-bottom: 20px;
  line-height: 22px;
}

.experience-title {
  font-family: unlock;
  font-size: 36px;
  margin-right: 10px;
}

.git-hub-link{
  font-weight:700;
  color: white;
  text-decoration: none;
}

@media (min-width: 481px) and (max-width:700px){
  .experience-page-title{
    font-size: 56px;
  }
  .main-category-text {
    font-size: 36px;
  }
  .inner-category-text{
    font-size: 28px;
  }
  .experience-text{
    font-size: 22px;
    max-width: 700px;
  }
  .company-logo{
    height: 40px;
    width: 150px;
  }

  .html-css-logo{
    height: 80px;
    width: 120px;
  }

  .javascript-logo{
    height: 80px;
  }


}

@media (min-width: 320px) and (max-width: 480px){
 .experience-page-title{
    font-size: 48px;
  }
  .main-category-text {
    font-size: 26px;
  }
  .inner-category-text{
    font-size: 24px;
  }
  .experience-text{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 22px;
    max-width: 460px;

  }
  
  .company-logo{
    height: 40px;
    width: 150px;
  }

  .html-css-logo{
    height: 80px;
    width: 120px;
  }

  .javascript-logo{
    height: 80px;
  }
}

.hidden{
  display:none;
}

