/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

    
@font-face {                  
font-family: 'Lucette';
src: url(https://humantooth.neocities.org/fonts/Lucette-Regular.woff2) format('woff2');
font-weight: normal;
font-style: normal;
} 
    body {
      
      background-color: black;
      /* background-image: url("/backgrounds/STIPPLE2.png"); */
      background-repeat: repeat;

      /*animation: moveBackground 30s linear infinite; */
      
      color: white;
      font-family:'Lucette';
      
      
      min-height: 100vh;
      margin: 0;

      display: flex;
      flex-direction: column;
       }

   body::before {
    content: "";
    position: fixed;

   left: 0;
   right: 0;
   bottom: 0;

   height: 450px;

   background: linear-gradient(
    to bottom,
    transparent,
    black
  );

  pointer-events: none;
}

      @keyframes moveBackground {
      from {
      background-position:
      0 0;   
  }

  to {
    background-position:
      250px 250px; 
  }
}
}



     
     h1{
      color: black; 
     }
     .pageContainer{
          
            grid-column: 2;
            grid-row: 1;
          background-color: black;
          background-repeat: repeat;
          display: flex;
          width:400px;
          height:400px;
          border: 2px solid midnightblue;
          
          
          padding: 25px;
          gap: 20px;
          margin: 0 auto;
          justify-content: center; 
          align-items: center;     
          flex-direction: column;
          
          
       
     }
     
     .titleimage{
         text-align: center;
       
       
       }
      .titleimage img {
          display: block;
          margin: 0 auto;
      }
      
    .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 80px);

    gap: 30px;

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

    padding: 20px;
} 
.grid-item {
  text-align: center;
  width: 80px;
}

.grid-item img {
  width: 45px;
  height: 45px;


  object-fit: contain;
}

.grid-item p {
  margin: 6px 0 0 0;
}

.grid-item a {
  color: white;
  text-decoration: none;
}

.grid-item a:hover {
  text-decoration: underline;
  
  background-image: url("backgrounds/blue40.gif");
  background-size: cover;
  background-position: center;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}
.selected-item{
    text-decoration: underline;
  
  background-image: url("backgrounds/blue40.gif");
  background-size: cover;
  background-position: center;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
  }


.windowsRow {
  width: 100%;
  display: grid;

  grid-template-columns: max-content max-content;
  justify-content: center;

  column-gap: 20px;
  align-items: start;
}

/* icon window */
.pageContainer {
  grid-column: 2;
  width: 500px;
  height: auto;
}
.welcomeWindow {
  width: 280px;
  min-height: 200px;

  background-color: black;

  border: 2px solid midnightblue;
  


  padding: 25px;

  color: white;
  grid-column: 1;
  grid-row: 1;

  justify-self: end;
  margin-right: 0px;
}
.section-header {
  
  display: block;
  width: 100%;
  box-sizing: border-box;
  align-items: center;

  padding: 4px 8px;

  border-top: 1px dotted midnightblue;
  border-bottom: 1px dotted midnightblue;
 font-weight: bold;
  background: linear-gradient(
    to right,
    black,
    #060622
  );
}

.skills-section {
  width: 100%;
}

.skills-section h2 {
  margin: 15px 0 8px 0;
  font-size: 18px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill {
  display: inline-block;

  padding: 7px 10px;

  border: 1px solid white;
  border-radius: 6px;

  background-color: black;
  color: white;

  font-size: 14px;
}

.project-thumbnail{
  width: 300px;
  height:auto;
  
  
  }
