/* nav brand font */
@import url("https://fonts.googleapis.com/css2?family=Baloo+Thambi+2:wght@400;500&family=Comfortaa:wght@400;500;600&family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Domine&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Domine&family=Playfair+Display&display=swap");
html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  background-color: dodgerblue;
  min-width: fit-content;
  /* stop shrinking w/ window size, at some point */
}

/* shrink font-size relative to window size, at some point */
@media (max-width: 508px) {
  html {
    font-size: 75%;
  }
}
body {
  position: relative;
  overflow-y: auto;
  padding-top: 65px;
  /* padding for fixed navbar */
}

.lead {
  font-weight: 300;
}

.cover-container {
  max-width: 32em;
}

#intro {
  background-color: aliceblue;
  font-family: "Domine", serif;
  color: #0b5c81;
  padding: 1em 1em;
  border-radius: 8px;
}

#profile-pic > img {
  border-radius: 8px;
}

/* BEGIN Projects section */
#projects .jumbotron {
  background-color: rgba(47, 112, 252, 0.788);
}
#projects .cover-container h1 {
  color: royalblue;
  font-family: "Open Sans", sans-serif;
}

.quote {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: rgba(22, 22, 87, 0.774);
}

.fa-python, .fa-java {
  font-size: 1.5em;
  padding-right: 1rem;
}

#octocat {
  position: relative;
}

/* END Projects section */
/* BEGIN Music section */
#music > .cover-container > h1 {
  /* color: rgb(22, 106, 190); */
  font-family: "Open Sans", sans-serif;
  /* color: #ffffff; */
  color: rgba(27, 119, 155, 0.747);
}

/* END Music section */
.featurette-divider {
  margin: 3rem 7rem;
  /* Space out the Bootstrap <hr> more */
  border: 1px solid #dbdbdb;
  /* border-radius: 2px; */
}

.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
}

.marketing h2 {
  font-weight: 400;
}

@media (min-width: 40em) {
  .featurette-heading {
    font-size: 50px;
  }
}
@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
/************* BEGIN Header CSS /*************/
#navbar1 {
  margin-left: auto;
  margin-right: auto;
  background-color: #1667b8;
  transition: background-color 200ms linear;
  /* color change anim on scroll-to-top*/
  /* width: fit-content; */
  /* padding-left: 3em; */
  /* color animation upon scroll-down */
}
#navbar1 .navbar-collapse {
  text-align: center;
}
#navbar1 .nav-link {
  /* padding: .25rem 0; */
  border-bottom: 0.25rem solid transparent;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
#navbar1 .nav-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
#navbar1 .navbar-brand {
  /* font-family: 'Baloo Thambi 2', cursive; */
  font-family: "Comfortaa", cursive;
  /* font-family: 'Righteous', cursive; */
  font-weight: 500;
  font-size: 1.5em;
}
#navbar1.scrolled {
  background-color: rgba(255, 255, 255, 0.932) !important;
  transition: background-color 200ms linear;
}
#navbar1.scrolled .contact-btn {
  background-color: #45b29a;
  color: white;
}
#navbar1.scrolled .contact-btn:hover {
  background-color: #379480;
  color: #cccccc;
  border: 2px solid transparent;
}
#navbar1.navbar-light .navbar-nav .nav-link {
  color: dodgerblue;
}
#navbar1.navbar-light .navbar-nav .nav-link.active {
  /* font-weight: 500; */
  color: rgba(8, 156, 255, 0.89);
  border-bottom-color: dodgerblue;
  text-shadow: 1px 2px 4px rgba(4, 121, 255, 0.466);
}
#navbar1.navbar-light .navbar-nav .nav-link:hover {
  border-bottom-color: rgba(180, 180, 180, 0.678);
}
#navbar1.navbar-dark .navbar-nav .nav-link.active {
  background-color: transparent;
  /* border-bottom-color: aliceblue; */
}

@media (max-width: 768px) {
  .navbar-expand-md .navbar-nav {
    align-items: center;
    margin-right: auto !important;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    width: fit-content;
    text-align: center;
  }
}
.scrollUp {
  transform: translateY(-80px);
}

/* .show {
  	background-color: yellow;
} */
.dropdown-menu {
  background-color: white;
  color: whitesmoke;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  padding-left: 1em;
  padding-right: 1em;
}

.contact-btn {
  background-color: aliceblue;
  color: #45b29a;
  border: 2px solid #45b29a;
}
.contact-btn:hover {
  background-color: #45b29a;
  color: #cccccc;
}

/************* END Header CSS /*************/
/************* BEGIN Contact CSS /*************/
#contact .btn {
  padding: 0 0;
}
#contact #linkedin, #contact #github, #contact #facebook {
  /* float: left; */
  font-size: 3em;
  margin-right: 1rem;
}
#contact #linkedin:active, #contact #github:active, #contact #facebook:active {
  box-shadow: 0 5px rgba(102, 102, 102, 0.568);
  transform: translateY(1.5px);
}
#contact #linkedin {
  color: #0e76a8;
}
#contact #linkedin:hover {
  color: #0b5c81;
}
#contact #github {
  color: #494646;
}
#contact #github:hover {
  color: black;
}
#contact #facebook {
  color: #1778F2;
}
#contact #facebook:hover {
  color: #1260be;
}

/* #contact a {
  	display: block;
  line-height: 15px;
  margin-bottom: 20px;
  opacity: 0.6;
  font-size: 15px;
  width: fit-content;
} */
/* ul.no-bullets {
  	list-style-type: none;
  margin: 0px;
  padding: 0px;
} */
.msg {
  text-align: center;
}
.msg .btn-block {
  font-family: "Montserrat", sans-serif;
  /* display: block; */
  border-radius: 5px;
  color: #085e5e;
  background-color: #07adad;
  border: 0px solid transparent;
  line-height: 1.75em;
}
.msg a:hover {
  color: #076868;
  background-color: #0a9696;
}

.fa-envelope {
  font-size: 1.25em;
}

/************* END Contact CSS /*************/
/************* BEGIN Footer CSS /*************/
footer {
  background-color: #cbecf7;
  padding: 3em 0;
}
footer .footer-list {
  overflow: hidden;
  margin: 0 auto;
  max-width: 600px;
  padding: 0;
}
footer .footer-list a {
  display: block;
  text-align: center;
  text-decoration: dashed;
  color: black;
  /* font-size: 1.5em; */
  font-size: 2em;
  width: fit-content;
  /* padding-bottom: .5em; */
}
footer .row {
  width: 50%;
  padding-bottom: 2em;
  text-align: center;
}
footer .fab {
  font-size: 1.5em;
}

/* @media (min-width: 992px) {
  	footer .footer-list a {
      	width: 25%;
      padding: 0;
      align-items: center;
  }
} */
/************* END Footer CSS /*************/

/*# sourceMappingURL=style.css.map */
