html {
  scroll-behavior: smooth;
}

body {
  background-color: black;
  margin: 50px;
}

* {
  font-family: "Roboto", sans-serif;
}

header {
  padding: 20px;
  margin-top: 50px;
}

h1 {
  font-family: "Oswald", sans-serif;
  color: white;
  font-size: 50px;
  text-align: center;
}

h2 {
  font-family: "Oswald", sans-serif;
  color: white;
  font-size: 30px;
  text-align: center;
}

p {
  margin-top: 50px;
  color: white;
  text-align: center;
  font-size: 20px;
}

  #buttons-chart-container {
   display: flex;
    float: left;
   }

  #buttons-container {
    float:left;
    /* box-sizing: border-box; */
    width: 20%
  }

  button {
    border-radius: 25px;
    margin: 10px;
    text-align: center;
    padding: 15px;
    font-size: 15px;
  }

  button:hover {
    background-color: #fffacd;
  }

  /*--100s frame--*/
.hundredsframe {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    background-color: #363636;
    max-width: 810px;
    margin: auto;
    margin-bottom: 50px;
   }

.item {
    text-align: center;
    background-color: #363636;
    padding: 5px;
    margin: 5px;
    transition: 0.2s;
    border-radius: 25px;
    }

.lightbulb {
    font-size: 22px;
  }

.active {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 0 35px white;
    border-radius: 25px;
    color: black;
  }


/*--Navigation Menu Styles--*/
#mySidenav a {
  position: absolute; /* Position them relative to the browser window */
  left: -86px; /* Position them outside of the screen */
  transition: 0.3s; /* Add transition on hover */
  padding: 20px;
  width: 100px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  border-radius: 0 5px 5px 0;
  font-family: 'Dosis', sans-serif;
}

#mySidenav a:hover {
  left: 0;
}

#about {
  top: 50px;
  background-color: #522A89;

}

#journey {
  top: 130px;
  background-color: #6A2A89;

}

#skills {
  top: 210px;
  background-color: #812A89;

}

#tools {
  top: 290px;
  background-color: #812A89;

}

#pubstalks {
  top: 370px;
  background-color: #892A79;

}

#projects {
  top: 450px;
  background-color: #7D035E;

}

#contact {
  top: 530px;
  background-color: #7D035E;

}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  }

/*--Icon Styling--*/
i.fa-regular, i.fa-solid {
  float: right;
}


/*--Social Media Icons--*/
  #social-media-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

  .social-media {
    padding: 15px;
    font-size: 25px;
    width: 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }

  .social-media:hover {
    opacity: 0.7;
  }
  .fab {
    padding: 15px;
    font-size: 25px;
    width: 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }

  .fab:hover {
    opacity: 0.7;
  }

  /* Facebook */
  .fa-facebook {
    background: #3B5998;
    color: white;
    margin: 8px;
  }

  /* Bluesky */
  .fa-bluesky {
    background: rgb(92, 92, 235);
    color: white;
    margin: 8px;
  }

  /*Linked In */
  .fa-linkedin {
    background: #2A5B89;
    color: white;
    margin: 8px;
  }

  /*GitHub*/
  .fa-github {
    background: #000;
    outline-color: white;
    outline-style: solid;
    color: white;
    margin: 8px;
  }


footer {
font-family: 'Dosis', sans-serif;
padding: 80px;
color: white;
display: flex;
flex-direction: column;
text-align: center;
}

a {
color: #EC7063;
}
