/* Navbar Styles */
header a.active {
  background-color: #00000000;
  color: rgb(255, 0, 0);
  margin: 0px auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  background-color: #1c1c1c;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid purple;
}
.navbar .logo {
  font-size: 32px;
  font-family: 'UnifrakturCook', cursive;
  color: purple;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.navbar nav ul li a:hover {
  color: purple;
}
  
  .expanded{
    display: none;
  }
  
  nav{
    top:0;
  }
  
  /* footer styles */
    footer {
      bottom: 0;
      height: 90px;
      grid-template-columns: 1fr repeat(5, minmax(auto, auto));
  
    }
  
    #plesk{
      /* i guess svgs need a height */
      height: 40px;
    }
  
    nav a, footer a {
      margin: 1.25rem 0.25em;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.5s;
      height: 50%;
      display: grid;
      align-items: center;
      
    }
  
    /* footer a:nth-child(2), footer a:nth-child(3){
      grid-row: 1/2;
      align-items: center;
      line-height: 0;
      padding: 0 0.5rem;
    }
    footer a:nth-child(3) {
      grid-row: 2/3;
      padding: 0.5rem;
    }
    footer a:nth-child(4),
    footer a:nth-child(5),
    footer a:nth-child(6) {
      grid-row: 1/3;
    } */
  
    nav a:link,
    nav a:visited,
    footer a:link,
    footer a:visited {
      color: rgb(240 240 240 / 0.85);
      transition: color 0.5s;
      /*font-size: 1rem;*/
      border-bottom: solid 3px rgb(240 240 240 / 0.01);
    }
  
    nav a:hover,
    nav a:focus,
    footer a:hover,
    footer a:focus {
      border-bottom: solid 3px;
      border-image-slice: 1;
      border-width: 3px;
      border-image-source: linear-gradient(to right, #b53bb6, #a54fc8, #9260d8, #7b6ee4, #5e7bee, #448cf7, #279bfc, #00a9ff, #00beff, #00cee9, #00dac2, #30e292);
    }
   
    nav #logo,
    nav #logo_sm,
    footer #logo {
      position: absolute;
      top: 0.25rem;
      left: 1.2rem;
      max-height: 40px;
    }
   
  
    nav #logo_link, #logo_link_sm{
      opacity: 0.90 ;
    }
  
     nav #logo_link:hover, #logo_link_sm:hover{
      border-bottom: none;
      opacity: 1;
    }
  
    nav #logo {
      top: 0.5rem;
    }
  
    nav #logo_link, footer #logo {
      display: none;
    }
  
    nav img, footer img {
      max-height: 40px;
      width: initial;
    }
    nav #logo_link img{
      max-height: 100px;
    }
  
    footer #omnivox{
      transform: translate(0, -6px);
    }
  
    nav, footer {
      justify-content: end;
    }
  
  
  /* styles for looping video */
    header {
      position: relative;
      display: grid;
      place-items: center;
    }
  
    video {
      margin-top: 100px; /*to match nav height*/
      width: 100%;
      aspect-ratio: 16/6;
      object-fit: cover;
      object-position: center center;
    } 
  
    header h1 {
      font-size: clamp(1.728rem, 5vw + 1rem, 3.583rem);
      position: absolute;
      bottom: 0;
    }
   
  
    /* main layout styles */
    main{
      padding-bottom: 150px; /*to match footer height*/
    }
  
  
  
    @media screen and (min-width:700px) {
      nav #logo_link{
        display: inline-block;
      } 
    }