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

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

* {
  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;
}

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

.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);
}

.center {
    text-align: center;
}

h1, h2 {
    font-family: var(--default-font-family);
    text-align: center;
}


h1 {
    color: var(--tertiary-color);
    font-size: 66px;
    margin-top: 150px;
    line-height: 1.5;
}

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

#h1 {
    color: var(--tertiary-color);
    font-size: 66px;
    margin-top: 150px;
}

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

#contact {
    padding-top: 100px;
    text-align: center;
    color: var(--tertiary-color);
    font-size: 24px;
}

p a {
    color: var(--secondary-color);
}

p .icon {
     color: var(--tertiary-color);
}

.content .contact {
    color: var(--tertiary-color);
    font-family: var(--default-font-family);
    font-size: 24px;
}

.container .icons {
    vertical-align: bottom;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.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);
}


footer .container {
    vertical-align: bottom;
    padding-top: 600px;
}

footer .credits {
    margin-top: 10px;
    margin-bottom: 20px;
    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: 20px;
    }

    .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;
    }

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

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

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

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

    #contact {
        font-size: 16px;
    }
}





