body {
  padding-top: 3.375rem;
  color: var(--bs-secondary);
}

@media (min-width: 992px) {
  body {
    padding-top: 0;
    padding-left: 17rem;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  text-transform: uppercase;
}

h1,
.h1 {
  line-height: 1;
}

p.lead {
  font-size: 1.15rem;
  font-weight: 400;
}

.subheading {
  font-family: "Saira Extra Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.5rem;
}

#sideNav {
  padding-left: 1rem;
  padding-right: 1rem;
}
#sideNav .navbar-nav .nav-item .nav-link {
  font-weight: 800;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
#sideNav .navbar-toggler:focus {
  outline-color: #d48a6e;
}

@media (min-width: 992px) {
  #sideNav {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 17rem;
    height: 100vh;
  }
  #sideNav .navbar-brand {
    display: flex;
    margin: auto auto 0;
    padding: 0.5rem;
  }
  #sideNav .navbar-brand .img-profile {
    max-width: 10rem;
    max-height: 10rem;
    border: 0.5rem solid rgba(255, 255, 255, 0.2);
  }
  #sideNav .navbar-collapse {
    display: flex;
    align-items: flex-start;
    flex-grow: 0;
    width: 100%;
    margin-bottom: auto;
  }
  #sideNav .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  #sideNav .navbar-collapse .navbar-nav .nav-item {
    display: block;
  }
  #sideNav .navbar-collapse .navbar-nav .nav-item .nav-link {
    display: block;
  }
}
.social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 3.5rem;
  background-color: #495057;
  color: #fff;
  border-radius: 100%;
  font-size: 1.5rem;
  margin-right: 1.5rem;
}
.social-icons .social-icon:last-child {
  margin-right: 0;
}
.social-icons .social-icon:hover {
  background-color: var(--bs-primary);
}

.dev-icons {
  font-size: 3rem;
}

section.resume-section {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 75rem;
}

.description {
  font-size: 1rem;
  text-align: center;
  line-height: 15px;
  margin-top: 10px;
}

section.resume-section .resume-section-content {
  width: 100%;
}

@media (min-width: 768px) {
  section.resume-section {
    min-height: 100vh;
  }
}
@media (min-width: 992px) {
  section.resume-section {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

ul.timeline {
  list-style-type: none;
  position: relative;
}
ul.timeline:before {
  content: " ";
  background: var(--bs-gray-500);
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 100%;
  z-index: 400;
}
ul.timeline > li {
  margin: 20px 0;
  padding-left: 20px;
}

ul.timeline > li:before {
  content: " ";
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--bs-primary);
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 400;
  margin-top: 8px;
}

.project-cards {
  display: flex;
  flex-wrap: wrap;
}

.project-cards > .card {
  margin-bottom: 10px;
  min-width: 18rem;
}

.project-cards > .card > .card-body > .card-link {
  text-decoration: none;
}

label[id="darkmode-toggle-label"] {
  width: 80px;
  height: 30px;
  position: relative;
  display: block;
  background: #ebebeb;
  border-radius: 20px;
  cursor: pointer;
}

label[id="darkmode-toggle-label"]:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(180deg, #ffcc89, #d8860b);
  border-radius: 180px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
input[id="darkmode-toggle"] {
  width: 0;
  height: 0;
  visibility: hidden;
}
input[id="darkmode-toggle"]:checked + label {
  background: #242424;
}

input[id="darkmode-toggle"]:checked + label[id="darkmode-toggle-label"]:after {
  left: 80px;
  transform: translateX(-100%);
  background: linear-gradient(180deg, #777, #3a3a3a);
}
label[id="darkmode-toggle-label"],
label[id="darkmode-toggle-label"]:after {
  transition: 0.3s;
}
input[id="darkmode-toggle"]:checked + label[id="darkmode-toggle-label"] + .background {
  background: #242424;
}
label[id="darkmode-toggle-label"] svg {
  position: absolute;
  width: 120px;
  top: 8px;
  z-index: 100;
}
label[id="darkmode-toggle-label"] svg.fa-sun {
  left: -46px;
  transition: 0.3s;
}
label[id="darkmode-toggle-label"] svg.fa-sun > path {
  fill: #fff;
}
label[id="darkmode-toggle-label"] svg.fa-moon {
  left: 6px;
  transition: 0.3s;
}
label[id="darkmode-toggle-label"] svg.fa-moon > path {
  fill: #7e7e7e;
}

input[id="darkmode-toggle"]:checked + label[id="darkmode-toggle-label"] svg.fa-sun > path {
  fill: #7e7e7e;
}
input[id="darkmode-toggle"]:checked + label[id="darkmode-toggle-label"] svg.fa-moon > path {
  fill: #fff;
}

span.small-button {
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 4px;
  margin-right: 4px;
}

span.small-button.green {
  background-color: #7ff27f;
}

span.small-button.green2 {
  background-color: #5fb832;
}

span.small-button.yellow {
  background-color: #f5f950;
}

span.small-button.purple {
  background-color: #966fbb;
}

span.small-button.purple2 {
  background-color: #712cf9;
  color: white;
}

span.small-button.orange {
  background-color: #f26529;
  color: white;
}

span.small-button.blue {
  background-color: #2866f0;
  color: white;
}

span.small-button.blue2 {
  background-color: #3e6e93;
  color: white;
}

span.small-button.black {
  background-color: #4c4c4c;
  color: white;
}

span.school-mark {
  font-size: 20px;
  font-weight: bold;
}

img.logo {
  width: 40px;
  height: 40px;
}

@media (min-width: 760px) {
  ul.double-col {
    width: 760px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  ul.double-col > li {
    line-height: 1.5em;
    float: left;
    width: 50%;
  }
}

::selection {
  background: var(--bs-primary);
  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background: var(--bs-primary);
}
