@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&display=swap');

body {
  background-color: rgb(112, 112, 112);
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/*Header Styling*/
header {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  padding: 10px;
}

nav ul {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section {
  width: 100%;
  margin-bottom: 20px;
  margin-left: 5%;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.title {
  flex: 0 1 auto;
  width: 350px;
  height: 100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  text-align: center;
}

.backButton {
  position: relative;
  margin: 0;
}

.backButton a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: lightblue;
}



/*Skills Styling*/
#skill-bar {
  width: 80%;
  margin: 0 auto;
}

.progress-bar {
  background-color: #ddd;
  border-radius: 20px;
  height: 20px;
  position: relative;
  width: 50%;
  margin: 0 auto;
}

.progress-bar-fill {
  background-color: #4CAF50;
  border-radius: 20px;
  height: 100%;
  position: absolute;
  top: 0;
}

.skill-progress-text {
  bottom: 0;
  color: rgb(0, 0, 0);
  font-size: 12px;
  position: absolute;
  right: 0;
  padding: 2px 5px;
}

.skill-name {
  text-align: center;
}

.skills-sections {
  color:#fff;
}



/*Timeline Styling*/
.timeline {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 50px;
  justify-content: center;
}
.timeline .event {
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.55);
  padding: 20px;
  margin-right: 50px;
  text-align: center;
}
.timeline .event h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.timeline .event p {
  font-size: 16px;
  color: rgb(46, 46, 46);
  margin-bottom: 20px;
}
.timeline .event a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: blue;
  margin-top: 20px;
  display: inline-block;
  }
.selected-skill-outer {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 50px;
  justify-content: center;
}
.selected-skill-inner {
  min-width: 300px;
  min-height: 300;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.55);
  padding: 20px;
  margin-right: 50px;
  text-align: center;
}
.descript-list {
  text-align: left;
  justify-content: left;
}