#audioPlayer {
  width: 300px; /* Set the width of the audio player */
  /*border: 2px solid #4CAF50; !* Add a border *!*/
  border-radius: 10px; /* Round the corners */
  background-color: transparent; /* Background color */
  padding: 10px; /* Add some padding */
}

#audioPlayer::-webkit-media-controls-panel {
  border: 2px solid #4CAF50;
  background-color: #FFFFFF; /* Change the background color of the controls panel */
  border-radius: 10px; /* Round the corners of the controls panel */
}

#audioPlayer::-webkit-media-controls-play-button,
#audioPlayer::-webkit-media-controls-pause-button {

  background-color:transparent; /* Change the background color of the play/pause button */
  border-radius: 50%; /* Make the play/pause button circular */
}

#audioPlayer::-webkit-media-controls-timeline {
  background-color: #FFFFFF; /* Change the background color of the timeline */
}

#audioPlayer::-webkit-media-controls-current-time-display,
#audioPlayer::-webkit-media-controls-time-remaining-display {
  color: #000; /* Change the color of the time display */
}

.social-icons {
  display: flex;
  justify-content: space-around;
  width: 200px;
  margin-left: 0px;
  /*margin: auto;*/
}
.social-icons a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  transition: color 0.3s;
  border: 2px solid white;
  border-radius: 50%;
  padding: 10px;
  margin-left: 0px;
}
.social-icons a:hover {
  color: #FF7F50;
  border-color: #FF7F50;
}

.nav-link{
  width: 40%;
  margin: auto;
}
.education{
  margin: auto;
  width: 40%;
}
@media (max-width: 1000px) {
  .education {
    width: 100%;
  }
  .card-img {
    width: 60%;
    margin-left: 10%;
  }
  .header-content{
    margin-top: 60px;
  }
}

@media (max-width: 500px) {
  .education {
    text-align: center;
  }
  .card-img {
    margin-left: 0;
  }
  #audioPlayer{
    width: 100%;
  }
  .header-content{
    margin-top: 120px;
  }
}

.card-img{
  margin-top: 8%;
}
.contactCard{
  margin: auto;
}
.info{
  color: #6d6d6d;;
}

.expImage{
  width: 80%;
  margin-left: 10%;
}

.softskill {
  text-align: center;
  position: relative;
  display: inline-block;
}
.softskill:before, .softskill:after {
  content: "";
  display: inline-block;
  width: 50px; /* Adjust the width of the lines */
  height: 2px;  /* Adjust the height of the lines */
  background-color: black;
  vertical-align: middle;
  margin: 0 10px; /* Space between the line and the title */
}



