@font-face {
  font-family: "DM Mono";
  src: url('/DMMono-Regular.ttf') format('truetype');
}
.LineNumber {
    color: teal;
    min-width: 60px;
    width: 60px;
    padding-right: 20px;
}
body {
    background-color: black;
    font-family: 'DM Mono';
    color: white;
    margin: 0px;
    padding: 0px;
}
.headline {
    h1 {
        font-size: 3em;
        font-weight: 800;
        padding-top: 20px;
        margin-top: 0px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    p {
        font-size: xx-large;
        padding-top: 20px;
        margin-top: 0px;
    }
    time {
        color: gray;
    }
    hr {
        height: 20vw;
    }
    a {
        font-size: 2em;
        font-weight: 900;
    }
}
a {
    color: white;
    font-weight: 600;
}
.avetar {
    object-fit: cover;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-top: auto;
    margin-bottom: auto;
}
.business_card {
    display: flex;
    dt {
        margin-left: 20px;
        font-weight: 600;
    }
    dd {
        margin-left: 20px;
        color: gray;
        font-weight: 600;
    }
    padding-bottom: 20px;
}


img {
    border-radius: 10px;
    border: 2px solid rgb(22, 23, 23);
}

:root{
  --margin: 20vw;
  --enterprise-black: rgb(38, 38, 38);
  --enterprise-black: black;
  --enterprise-dark-gray: rgb(75, 75, 75);
  --enterprise-gray: rgb(192, 191, 191);
  --enterprise-white: white;
  --enterprise-purple: #8F0177;
  --enterprise-light-purple: #be4aab;
  --enterprise-light-gray: whitesmoke;
  --enterprise-blue: rgb(53, 25, 144);
  --enterprise-light-blue: rgb(81, 36, 232);
  --enterprise-teal: rgb(100, 224, 179);
  --enterprise-light-teal: rgb(178, 245, 220);

  --margin: 20vw;

  --wpMinimizedPFontSize: large;
  --mobilePFontSize: x-large;
}




/* Everything related to the navigation bar goes here */
nav {
  display: flex;
  background-color: black;
  color: var(--enterprise-gray);
  max-height: 80px;
  position: sticky;

  padding-right: var(--margin);

  top: 0px;
  z-index: 9999;

  @media (hover: none) {
    display: none;
  }
  @media (max-width: 1024px) {
    display: none;
  }
  

  .logo img {
    max-height: 80px;
    padding: 0px;
    margin: 0px;
    object-fit: cover;
  }
  

  .element {
    justify-content: center;
    align-items: center;
    padding: 30px 32px 20px 32px;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 4px;
    
    opacity: 1;
    transition: all 0.25s ease-in;
  }    
  
  .element:hover {  
    color: var(--enterprise-white);
    cursor: pointer;
    opacity: 1;
  }

  .active {
    background-color: var(--enterprise-purple);
    color: var(--enterprise-white);
    opacity: 1;
    transition: all 0.5s ease;
  }
  .active:hover {
    background-color: var(--enterprise-purple);
    color: var(--enterprise-white);
  }
}

.top {
  padding: 0;
}

/* Mobile nav menu */
.topnav {

  display: none;

  @media (hover: none) {
    display: block;
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  @media (max-width: 1024px) {
    display: block;
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 999;
    a {
      img {
        width: 60%;
      }
    }
  }
}
.topnav #mobileLinks {
  display: none;
  position: relative;
  margin-left: auto;
  right: 0;
  text-align: right;
  padding-right: 8vw;
}
.topnav a {
  color: white;
  padding-left: 16px;
  padding-top: 16px;
  padding-bottom: 4px;
  text-decoration: none;
  font-size: xx-large;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: relative;
  right: 0;
  width: 2em;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: 8vw;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* row is for handeling media/mobile display */
.row {
  display: flex;
  flex-wrap: wrap;

  @media (hover: none) {
    display: block;
  }
  @media (max-width: 1024px) {
    display: block;
  }
}


.container {
    margin-top: 2vh;
    margin-left: 6vw;
    margin-right: 2vw;
    display: flex;
}

.nav_headlines{
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 16vw; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 10vh;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 28px;
  margin-right: 28px;
    
    a {
        color: gray;
        font-weight: 100;
        font-size: medium;
        padding-bottom: 18px;
    }
    br {
        margin-bottom: 20px;
    }

    ul {
        list-style-type: none;
    }
  @media (hover: none) {
    word-break: break-all;
    padding-top: 16vh;
  }
  @media (max-width: 1024px) {
    word-break: break-all;
    padding-top: 16vh;
  }
}
.left {
  left: 0;
  margin-left: 28px;
}


.page {
    width: 60vw;
    margin-bottom: 8vh;
    margin-left: 20vw;

 
}


.blog_item {
    margin-bottom: 1em;
    padding: 24px;
    width: 60%;
}

.tags {
    display: flex;
    flex-wrap: wrap;
}
.tag {
    padding-left: 6px;
    padding-right: 6px;
    background-color: rgb(28, 28, 28);
    color: slategrey;
    border-radius: 2px;
    margin-right: 12px;
    margin-top: 8px;
}

.quote {
    border-left: 4px solid slategray;
    background-color: rgb(22, 23, 23);
    padding: 12px;
    padding-left: 18px;
}

h1 {
    margin-top: 8vh;
    text-align: center;
}

h2 {
    margin-top: 4vh;
    text-align: center;
}

h3 {
    text-align: center;
}

.img_ref {
  max-width: 100%;
}


/* Everything related to buttons */
button {
  /**/
  padding: 8px 24px 8px 24px;
  border-radius: 50%;
  font-family: 'DM Mono';
  background-color: var(--enterprise-white);

  opacity: 1;
  transition: all 0.5s ease;
  
  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}

button.arrow {
  border-radius: 40px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 8px;

  @media (hover: none) {
    font-size: var(--mobilePFontSize);
  }
  @media (max-width: 1024px) {
    font-size: var(--wpMinimizedPFontSize);
  }
}

button:hover {
  opacity: 1;
  background-image: linear-gradient(to right, rgb(123, 121, 121) 0%, slategrey 100%);
  color: var(--enterprise-white);
  cursor: pointer;
  border-color: var(--enterprise-gray);
}

button.dark {
  background-color: var(--enterprise-black);
  color: var(--enterprise-white);
}

button.dark:hover {
  opacity: 1;
  background-color: var(--enterprise-white);
  color: var(--enterprise-black);
}


button.blue {
  background-color: var(--enterprise-blue);
  color: var(--enterprise-white);
}
button.blue:hover {
  opacity: 1;
  background-color: var(--enterprise-teal);
  color: var(--enterprise-white);
}


.text_btn {
  display: flex; 
  align-items: center;
}


.nav_site{
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 18vw; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 10vh;
  padding-right: 20px;
  margin-left: 28px;
    
    a {
        color: gray;
        font-weight: 100;
        font-size: medium;
    }
    br {
        margin-bottom: 20px;
    }

    ul {
        list-style-type: none;
        padding-left: 10px;
    }

  
  @media (hover: none) {
    word-break: break-all;
    margin-top: 8vh;
  }
  @media (max-width: 1024px) {
      word-break: break-all;
      padding-top: 8vh;
    }
}
.nav_lnk { 
  font-weight: 600; 
  padding-bottom: 16px;
  .active {
    color: greenyellow;
  }
  details>summary {
    list-style: none;
  }
  summary::-webkit-details-marker {
    display: none
  }

  summary::after {
    content: ' ►';
  }
  details[open] summary:after {
    content: " ▼";
  }
  @media (hover: none) {
    word-break: break-all;
    margin-top: 8vh;
  }
  @media (max-width: 1024px) {
    word-break: break-all;
    padding-top: 8vh;
  }

}

.nav_point {
  font-weight: 800;
  li {
    padding-bottom: 12px;
    padding-top: 12px;
    border-left: solid 3px rgb(68,68,68);
    padding-left: 20px;
    color: #ddd;
    font-weight: 800;
  }
  a:hover {
      color: white;
      cursor: pointer;
      text-decoration: underline solid white 1px;
    }
  li:hover {
      border-left: solid 3px white;
  }
  .active {
    color: greenyellow;
    border-left: solid 3px greenyellow;
    a {
      text-decoration: underline solid yellowgreen 1px;
      color: yellowgreen;
    font-weight: 800;
    }
  }
}