/* TOP NAV */
.topnav {
    background-color: #d4d4d4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2%;
  }

.topnav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
  }
  
  .topnav ul li {
    display: inline;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: calc(0.1vw + 0.1vh + 2vmin);
  }
  
  .topnav ul li a {
    text-decoration: none;
    color: #333;
    font-weight:500;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    letter-spacing: 1px;
  }
  
  .topnav ul li a:hover {
    background-color: #e0e0e0;
    color: #000;
    border-radius: 5px;
  }

/* DIVS */
#intro-div{
    margin-top: 5vh;
    margin-left: 10vw;
    margin-right: 10vw;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.85));
    border-radius: 10%/20%;
    overflow: hidden;
    transition:ease-in;
}
/*fade in frames for the main div*/
@keyframes fadeIn {
    from {
      opacity: 0; /* start transparent */
    }
    to {
      opacity: 1;
    }
  }

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }

div.column-container {
    display: flex;
    width: auto;
    height: auto;
    padding-top: 0%;
    padding-bottom: 4%;
    flex-wrap: wrap;
}

div.column-1 {
    flex: 0 0 70%;
    margin: 1vw;
    padding: 2vw;
    flex-wrap: wrap;
}
div.column-2 {
    flex: 2;
    margin: 1vw;
    padding: 2vw;
}

.column {
    flex: 0 0 50%;
    min-width: 50%;
    height: auto
}
.project-column {
    display: flex;
    flex: 0 0 40%;
    min-width: 40%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 2%;
}

.grad {
    background-image: linear-gradient(to right, rgba(202, 177, 254, 0), rgba(87, 110, 132, 0.73));
  }

.info-subheading {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(60, 60, 60);
    font-size: calc(0.1vw + 0.1vh + 1.5vmin);
}

#myPhoto {
    flex: 0 0 50%;
    max-width: 30%;
    max-height: 50%;
    object-fit: contain;
    flex-wrap: wrap;
    border-radius: 50%;
}

.project {
    background-color: rgba(255, 255, 255, 0.5);
    justify-content: center;
    align-items: center;
    max-width: 70%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 2%;
    border-radius: 10%/20%;
}

.project-link {
    text-decoration: none;
    color: inherit; 
    display: flex; 
    justify-content: center;
  }
  
  .project-link:hover .project {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
    transition: box-shadow 0.3s ease-in-out;
    transform: scale(1.05);
  }

  #icon-div{
    display: flex;
    justify-content: center;
    text-align: center;
  }
/* TEXT */
#title {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(1vw + 1vh + 2vmin);
}

#about-info {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: calc(0.1vw + 0.1vh + 1.5vmin);
}

.project-title {
    font-weight: bold;
}

.project-tech {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.tech {
    border-radius: 12.5%/25%;
    border: 2px solid #333;
    padding: 3px;
    background-color: #333;
    color: #e0e0e0;
    font-size: 2vmin;
    margin-left: 0.5%;
    margin-right: 0.5%;
}

.icon-link {
  color: inherit;
  text-decoration: none;
  font-size: 100%;
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 1%;
  font-size: calc(0.1vw + 0.1vh + 3vmin);
}

.icon-link:hover {
  transform: scale(1.1);
}








