/* Light Mode Color Scheme */
:root {
  --color-bg: #fff;
  --color-bg2: #f4f4f4;
  --color-toggle-accent: #ff7900;
  --color-text: #333333;
}
.header-mobile {
  display: none;
}
@media only screen and (max-width: 780px) {
  .header-mobile {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 10;
    padding-right: 20px;
  }

  .headerContainer {
    display: none;
  }

  #menu.active {
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-right-radius: 10px;
    z-index: 10;
    padding-right: 20px;
  }

  .header-mobile .navLogo {
    width: 40px;
  }
  .header-mobile .navLogo img {
    height: 40px;
    margin-left: 20px;
    margin-top: 15px;
  }

  /* Header */

  .header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
  }

  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    font-family: "Noto Serif Display";
  }

  .header li a {
    display: block;
    text-align: right;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.6em;
    color: rgb(73, 73, 73);
  }

  /* Nav Menu */
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height 0.2s ease-out;
  }

  /* Menu Icon */
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 28px;
    position: relative;
    user-select: none;
    scale: 150%;
  }

  .header .menu-icon .navicon {
    background: var(--color-text);
    display: block;
    height: 2px;
    width: 20px;
    position: relative;
    transition: background 0.2s ease-out;
  }

  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: var(--color-text);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
  }

  .header .menu-icon .navicon:before {
    top: 5px;
  }

  .header .menu-icon .navicon:after {
    top: -5px;
  }

  /* Menu Button */
  .header .menu-btn {
    display: none;
  }

  .header .menu-btn:checked ~ .menu {
    max-height: 300px;
  }

  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }

  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
}

@media only screen and (max-width: 480px) {
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    scale: 100%;
  }
  .header-mobile {
    padding-right: 0;
  }

  #menu.active {
    padding-right: 0;
  }
}
