html {
  scroll-behavior: smooth;
    }

body {
    margin: 0;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    }
  

  .content 
  {
    padding: 16px;
  }
  


  .header {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: center;
  }
  
  .topnav {
    position: sticky;
    z-index: 100;
    top: 0;
    overflow: hidden;
    background-color: rgba(41, 41, 41, 0.8);
    opacity: 1.0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    
  }

  .topnav .navbar-dropdown
  {
    display: none;
  }
  

  @media screen and (max-width: 680px) {
    .topnav a:not(:nth-child(4)) {display: none;}
    .topnav a.navbar-dropdown {
      position: sticky;
      float: right;
      display: block;
    }
  }
  

  @media screen and (max-width: 680px) {
    .topnav.responsive {position: sticky;}
    .topnav.responsive a.navbar-dropdown {
      position: sticky;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: center;
    }
  }

  .topnav a {
    float: center;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    font-weight: bold;
  }

  .topnav a:hover {
    background-color: #353535;
    color: black;
    opacity: 1.0;
  }
  
  .topnav a.active {
    color: rgb(0, 255, 0);
    opacity: 1.0;
  }

  .topnav a.header
  {
    color: rgb(0, 255, 0);
    text-align: left;
    font-size: larger;
    text-indent: 1%;
  }

  .navbar-icon
  {
    width: 30px;
    margin-bottom: -8px;
    text-decoration: none;
    background:rgba(1, 1, 1, 0);
    filter: invert(65%) sepia(87%) saturate(4237%) hue-rotate(85deg) brightness(117%) contrast(129%);
  }




  .home-content
  {
    margin-left: 40px;
    margin-right: 40px;

    display: grid;
    align-content: flex-start;
  
    grid-template-columns: repeat(auto-fill, 700px);
    grid-template-rows: auto;
    grid-auto-rows: min-content;
  
    justify-items: center;
    justify-content: center;
    align-self: center;
  
  }


  .home-header
  {
    background-color: rgb(37, 37, 37);
  }

  .home-colum
  {
  }

  .home-large-text
  {
    font-family: 'Courier New', Courier, monospace;
    font-size: 48px;
    text-align: center;
    align-self: c;
    color: rgb(255, 255, 255);
  }

  .home-showcase-video
  {

    height: 140%;
    width: 140%;
    margin-top: 40px;
    margin-bottom: 40px;
  
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 15px;
    display: flex;
    position: relative;
    text-align: center;
  
    border-style: none;
    width: 620px;
    height: 349px;
    background-color: #f2f2f2;
    align-items: center;

  }

  @media screen and (max-width: 680px) 
  {
    .home-showcase-video {width: 400px; height: 240px;}

  }




.written-text
{
  font-family: 'Courier New', Courier, monospace;
  font-size: large;
  color: rgb(255, 255, 255);
}

.link
{
  font-family: 'Courier New', Courier, monospace;
  font-size: large;
  color: rgb(0, 255, 0);
}



.card-holder
{
  display: grid;
  align-content: flex-start;

  grid-template-columns: repeat(auto-fill, 500px);
  grid-template-rows: auto;
  grid-auto-rows: min-content;

  justify-items: center;
  justify-content: center;
  align-self: center;
  gap: 20px;
}

.project-card
{
  width: 400px;

  justify-items: center;
  justify-content: center;
  align-self: center;

  opacity: 0;
  animation: fadeInCard 0.5s forwards ease-in-out;
}

@keyframes fadeInCard {

  from 
  {
    opacity: 0.0;

    position: relative;
    top: 50px;
  }
  to 
  {
    opacity: 1;
    transform: scaleY(1);
    transform: scaleX(1);

    position: relative;
    top: 0px;
  }
  
}


.card-text-holder
{
  color: #f1f1f1;

  font-size: 16px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-align: center;



  justify-items: center;
  justify-content: center;
  align-self: center;

}



.project-card-image
{
  height: 100%;
  width: 100%;

  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 15px;
  display: flex;
  position: relative;
  text-align: center;
  transition: .25s;

  border-style: none;
  width: 400px;
  height: 240px;
  background-color: #000000;
  align-items: center;
  text-align: center;
}


@keyframes card-on-click {
  
}


.project-card-image:hover
{
  animation: card-on-hover 0.1s forwards ease-in-out;
}

@keyframes card-on-hover {

  from
  {
    filter: opacity(100%) invert(0%);
    transform: scale(1);
  }

  to 
  {
    filter: opacity(110%) invert(10%);
    transform: scale(1.03);
  }
  
}




/* */


.card-tags-holder
{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin: 10px 0;
}

.card-tag
{
  border-radius: 5px;
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-align: center;
  padding: 0 5px;
}

.card-tag[type="role"]
{
  --bg_color: #209372;
}
.card-tag[type="project-type"]
{
  --bg_color: #c30600;
}
.card-tag[type="tool"]
{
  --bg_color: #335eb5;
}
.card-tag[type="engine"]
{
  --bg_color: #933ac2;
}
.card-tag[type="date"]
{
  --bg_color: #cf630b;
}

.card-tag
{
  background-color: var(--bg_color);
}


.social-link
{

  align-items: center;
  padding: 20px;
  font-size: 10px;
  width: 10px;
  text-align: center;
  text-decoration: none;
  margin: 4px 2px;
  background:rgba(1, 1, 1, 0);
  filter: sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  
}

.social-link:hover
{
  filter: invert(75%) sepia(46%) saturate(7184%) hue-rotate(81deg) brightness(115%) contrast(125%);
}







footer
{
  bottom: 0;
  align-items: center;
  text-align: center;
  background-color:  rgba(41, 41, 41, 0.8);
}

.title_center
{
  font-family: 'Courier New', Courier, monospace;
  font-size: 36px;
  text-align: center;
  color: rgb(0, 255, 0);
}

.header-container
{
  position: relative;
}

.header-link-target
{
  position: absolute;
  top: -68px;
  left: 0;
}

.small_text_center
{
  font-family: 'Courier New', Courier, monospace;
  font-size: large;
  text-align: center;
  color: rgb(255, 255, 255);
}


.line_dash_small
{
  width:10%;
  text-align:center;
  color: rgb(0, 255, 0);
  text-align: center;
}



.about-me-content
{
  margin-left: 10px;
  margin-right: 10px;

  display: grid;
  align-content: flex-start;

  grid-template-columns: repeat(auto-fill, 700px);
  grid-template-rows: auto;
  grid-auto-rows: min-content;

  justify-items: center;
  justify-content: center;
  align-self: center;
}

.about-me-holder
{
  width: 600px;

  justify-items: center;
  justify-content: center;
  align-self: center;

  margin-bottom: 50px;
}

.about-me-text
{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: left;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.about-me-text[color="white"]
{
  --text-color: rgb(255, 255, 255);
}

.about-me-text[color="green"]
{
  --text-color: rgb(0, 255, 0);
}

.about-me-text
{
  color: var(--text-color);
}



.about-me-image
{
  width: 80%;

  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 15px;
  display: flex;
}






/* Subpage Specfic tags */ 

.subpage-centeral-column
{


  background-color: rgba(58, 58, 58, 0.5);

    margin-left: 10%;
    margin-right: 10%;
    display: grid;
    align-content: flex-start;
  
    grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
    grid-template-rows: auto;
    grid-auto-rows: min-content;
  
    align-items: center;
    justify-items: center;
    justify-content: center;
    align-self: center;
}


.subpgae-project-topic
{

  margin-top: 50px; 
  margin-bottom: 20px;

  color: rgb(0, 255, 0);

  font-size: 48px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-align: center;


  justify-items: center;
  justify-content: center;
  align-self: center;

}


.subpage-text-body
{

  max-width: 80%;
  height: auto;

  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: center;
  align-items: center;
  font-size: 20px;
  color: rgb(255, 255, 255);
}


.subpage-image
{

  max-width: 50%;
  height: auto;

  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 15px;
  display: flex;
  position: relative;
  text-align: center;
  transition: .25s;

  border-style: none;
  background-color: #000000;
  align-items: center;
  text-align: center;

}

