h1 {
    color: rgb(185, 255, 216);
    font-size: 18pt;
    margin-block-start: 0%;
    margin: 0%;
    text-transform: uppercase;
}

h2 {
    color: white;
    font-size: 12pt;
    font-weight: lighter;
    margin-inline-end: 0%;
    margin: 0%;
}
/* project-title */
h3 {
  color: white;
  font-size: 16pt;
  font-weight: bold;
  margin: 0%;
  text-transform: uppercase;
}

/* project-year */

h4 {
    color: white;
    font-size: 12pt;
    margin: 0%;
    font-weight: lighter;
    line-height: 1.2;

}
/* project-tag */

h5 {
    color: rgb(185, 255, 216);
    font-size: 12pt;
    margin: 0%;
    font-weight: lighter;
    line-height: 1.5;
}


h6{
    font-size: 18pt;
    margin-top: 5px;
margin-bottom: 10px;
}
h7{
    font-size: 12pt;
    line-height: 1.5;
    
    
}
.alt {
    font-size: 12pt;
    line-height: 1.5;
    text-align: right;
    color: rgb(185, 255, 216);
    font-style: italic;
}

a:link {
    font-weight: lighter;
    text-decoration: none;
}

a:visited {
    font-weight: lighter;
    text-decoration: none;
}

#first-row {
    position: fixed;
    padding-top: 30px;
padding-bottom: 20px;
    top: 0px;
   width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 1000;
    
}

/* #name{
position: fixed;

} */


#description {
    width: 450px;
    padding-right: 140px;
    text-align: end;
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


#new-media{
    color: rgb(185, 255, 216);
}

#white{
    color: rgb(255, 255, 255);
}

.short-description {
    padding-top: 5px;
  display: none;
  text-align: justify;
}

.name-year:hover .short-description {
  display: block;
}


.short-description{
    width: 95%;
}
a:visited {
    color: white;
    font-weight: lighter;
    text-decoration: none;
  }
  .link:visited {
    color: white;
  }  
  @media only screen and (max-width:900px){
      #description{
          width: 400px;
      }
  }

  @media only screen and (max-width:700px){
    #first-row {
        padding-left: 20px;
        padding-top: 20px;
        width: 100vw;
         background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7441570378151261) 52%, rgba(0,0,0,0) 100%);

        
      }
      #name{
          width: 100px;
       
      }
      #description{
        width: 350px;
    }
      
  }

  #toggle-menu {
    display: none;
    font-size: 40px;
    cursor: pointer;
    color: white;
    position: absolute;
    right: 40px;
    margin-top: -10px;
  }
  
  
  @media screen and (max-width: 700px) {
    #description {
      display: none;
    }
  
    #toggle-menu {
      display: block;
    }
  
    #description.active {
      display: flex;
      flex-direction: column;
      width: 100%;
position: absolute;
right:-50px;  
top:20px;

  }
  
    #description a {
      display: block;
      padding: 2px;
      text-align: right;
    }
  }
  

  a.link-blink {
    animation: animate 4s ease-in infinite;
    text-decoration: none; /* Optional: Disable underline */
    color: rgb(185, 255, 216);
}

@keyframes animate {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

a.link-blink:hover {
    animation-play-state: paused; /* Pause animation on hover */
    opacity: 1; /* Ensure full opacity on hover */
    color: white;
    text-decoration: none; /* Optional: Ensure no underline on hover */
}