:root {
    --branding-color: #131313;
    --secondary-color: #505050;
    --tertiary-color: #F5F5F5;
    --default-font-family: 'Poppins';
}

body {
    font-family: var(--default-font-family);
    background: var(--branding-color);
}

.container {
    background: var(--branding-color);
}

.content-container .container {
    background: var(--branding-color);
}

.navbar {
    background-color: var(--branding-color);
    margin-top: 0;
}

small {
  color: var(--tertiary-color);
}

span {
    margin-top: 10px;
    margin-bottom: 8px;
}

.center {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--default-font-family);
    color: var(--tertiary-color);
}

h1 {
     font-size: 66px;
     line-height: 1;
     margin-bottom: 0;
     margin-top: 150px
}

#h1 {
     font-size: 66px;
     line-height: 1;
     margin-bottom: 0;
     text-align: center;
}

h2 {
    font-size: 40px;
}

#h2 {
    font-size: 28px;
    color: var(--secondary-color);
    text-align: center;
}

h3 {
    font-size: 36px;
    line-height: 1,5;
    margin: 20px 0 0;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

.row {
    margin-top: 150px;
}

.coding-journey {
    margin: 0 auto 30px;
    text-align: center;
    font-size: 20px;
    color: var(--tertiary-color);
}

.shecodes-link {
    color: var(--tertiary-color);
}

.profile-picture {
    border-radius: 10px;
    margin-top: 8px;
}

.fa-github {
  font-size: 3em;
}

.fa-github:hover {
    color: var(--secondary-color);
}

.fa-linkedin {
  font-size: 3em;
}

.fa-linkedin:hover {
    color: var(--secondary-color);
}

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

.fa-envelope:hover {
  color: var(--secondary-color);
}

p {
    font-weight: 400;
    vertical-align: middle;
    text-align: center;
}

.btn-branding {
    background: var(--secondary-color);
    color:  var(--tertiary-color);
    font-family: var(--default-font-family);
    font-size: 20px;
    text-align: center;
    line-height: 27px;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 10px;
}

.btn-branding:hover {
    border: 1.5px solid var(--branding-color);
    background-color: var(--tertiary-color);
    color: var(--branding-color);
}

.intro p {
    color: var(--tertiary-color);
    font-family: var(--default-font-family);
    font-size: 26px;
}

* {
  font-family: var(--default-font-family);
  box-sizing: border-box;
}

.top-nav {
  width: 100%;
  top: 0;
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--branding-color);
  background: linear-gradient(nulldeg,rgba(15, 13, 13, 1) 11%, rgba(80, 80, 80, 1) 100%);
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu > li:last-child {
    margin-right: 35px;
}

li a {
  font-size: 17px;
  gap: 30px;
  color: var(--tertiary-color);
  text-decoration: none;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

a {
    color: var(--tertiary-color);
}

#active:hover {
    transition: all 100ms ease-in-out;
    color:#000080;
}

#inactive:hover {
    transition: all 100ms ease-in-out;
    color:#000080;
}

.branding {
  max-width: 260px;
  margin-left: 0;
  text-align: left;
}

.branding img {
    max-width: 65px;
    margin-left: 0;
    text-align: left;
    color: var(--branding-color);
}

.branding:hover {
    color: #000080;
}

.toggler {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.icons {
    padding-top: 200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

footer .credits {
    font-size: 14px;
    color: var(--tertiary-color);
}

.credits a {
    color: var(--tertiary-color);
}


@media (max-width: 700px) {

.project-description {
    padding: 0;
    text-align: center;
}
h1 {
    font-size: 44px;
    line-height: 1.5;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 26px;
}

.menu-button-container {
    display: flex;
}

.menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}
  
#menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
  
#menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
  
.menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
}
  
.menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
}

#h1 {
     font-size: 44px;
     text-align: center;
}

#h2 {
    font-size: 20px;
    text-align: center;
}

.coding-journey {
    font-size: 14px;
    text-align: center;
}

.profile-picture {
    display: block;
    margin: auto;
    max-width: 300px;
    max-height: 260px;
}

p .center {
   padding-bottom: 0;
}

.col-lg-6 {
    display: block;
    align-items: center;
}

.fa-github {
  font-size: 1.5em;
}

.fa-linkedin {
  font-size: 1.5em;
}

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

footer .credits {
    font-size: 11px;
}

}

