*{
    margin: 0;
    padding: 0;
}


body{
    width: 100vw;
    height: 100vh;
    cursor: none;
    
    
    align-items: center;
    justify-content: center;
    
    background-color: rgb(37, 36, 36);

}

.projectTitle{
    position: relative;
    left: 25px;
    font-size: 50px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav-list{
    top: 0%;
    background: black;
    position: relative;
    
    width: 100%;
    /* background-color:rgba(0, 0, 0, 0.863); */
    display: flex;

    margin: auto;
}

.nav-list li{
    
    display: flex;
    position: relative;
    
    
    list-style: none;
    padding: 23px;

}

.nav-list li a{
    display: flex;
    
    
    text-decoration: none;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.nav-list li a:hover{
    cursor: none;
    text-decoration: none;
    color: white;

}


.cursor{
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid white;
    background: none;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    transition-property: transform, background ; 
    transform-origin: 100% 100%;
    z-index: 20;
    opacity: 50%;
} 

.link-grow{
    transform: scale(1.5);
    background: white;
    border-radius: white;
}

.expand{
    animation: cursorAnimation .5s forwards;
    border: 1px solid white;
    background: white;
    opacity: 100%;
}



.card-background{
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.titleOne{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}



.card {
    border: hotpink;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 210px 210px 80px;
    grid-template-areas: "image" "text" "stats";
  
    border-radius: 18px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.card-image {
   grid-area: image;
   background: url("colorswitchproject.jpg");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.card-text {
    grid-area: text;
    margin: 25px;
  }
  .card-text .date {
    color: rgb(255, 7, 110);
    font-size:13px;
  }
  .card-text p {
      margin: 0px;

    color: grey;
    font-size:15px;
    font-weight: 300;
  }
  .card-text h2 {
    margin-top:0px;
    font-size:28px;
  }

  .card-stats {
    grid-area: stats; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: rgb(255, 7, 110);
  }

  .card-stats .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
    color: white;
    padding:10px;
  }

  .card:hover {
    cursor: pointer;
    transform: scale(1.15);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
  }
  .card {
  

    transition: 0.5s ease;
    cursor: none;
    margin:30px;
  }

  .card2 {
    z-index: 1;
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 210px 210px 80px;
    grid-template-areas: "image" "text" "stats";
  
    border-radius: 18px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

#github-link{
  text-decoration: none;
  color: white;
}

.card-image2 {
   grid-area: image;
   background: url("timemanagement.png");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.projectTitle{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.card-text2 {
    grid-area: text;
    margin: 25px;
  }
  .card-text2 .date {
    color: rgb(255, 7, 110);
    font-size:13px;
  }
  .card-text2 p {
    color: grey;
    font-size:15px;
    font-weight: 300;
  }
  .card-text2 h2 {
    margin-top:0px;
    font-size:28px;
  }

  .card-stats2 {
    grid-area: stats; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: rgb(255, 7, 110);
  }

  .card-stats2 .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
    color: white;
    padding:10px;
  }

  .card2:hover {
    cursor: pointer;
    transform: scale(1.15);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
  }
  .card2 {
  

    transition: 0.5s ease;
    cursor: none;
    margin:30px;
  }

  .card3 {
    z-index: 1;
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 210px 210px 80px;
    grid-template-areas: "image" "text" "stats";
  
    border-radius: 18px;
    background: white;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.card-image3 {
   grid-area: image;
   background: url("vrproject.jpg");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.card-text3 {
    grid-area: text;
    margin: 25px;
  }
  .card-text3 .date {
    color: rgb(255, 7, 110);
    font-size:13px;
  }
  .card-text3 p {
    color: grey;
    font-size:15px;
    font-weight: 300;
  }
  .card-text3 h2 {
    margin-top:0px;
    font-size:28px;
  }

  .card-stats3 {
    grid-area: stats; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: rgb(255, 7, 110);
  }

  .card-stats3 .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  
    color: white;
    padding:10px;
  }

  .card3:hover {
    cursor: pointer;
    transform: scale(1.15);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
  }
  .card3 {
  

    transition: 0.5s ease;
    cursor: none;
    margin:30px;
  }

 

