body {
    background-color:#f2f2f2;
}
h1{
    color:black;
}

p {
    color: black;
}

nav {
  position: sticky;
  top: 0;
  background-color: #f2f2f2;
  z-index: 100;
  padding: 15px 0;
}


.typing {
    font-family: monospace;
    font-size: 30px;
    text-align: center;
    border-right: 2px solid black;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
    animation: blink 0.7s step-end infinite;
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

  .typing2 {
    font-family: monospace;
    font-size: 17px;
    text-align: center;
    border-right: 2px solid black;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
    animation: blink 0.4s step-end infinite;
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .nav-button {
    color: black;
    text-decoration: underline;
    padding: 0.25px 7px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .nav-button:hover {
    background-color: goldenrod;
    color: white;
  }
  
  .about-text {
    font-size: 15px; 
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: black;
    line-height: 1.6;
    padding: 20px;
    font-family: monospace;
  }
  


  .section-block {
    text-align: center;
    background-color: #f2f2f2;
    color: black;
  }
  
  .section-block h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: monospace;
  }
  
  .education-details {

    position: relative;
    font-family: monospace;
    max-width: 700px;
    width: 80%;
    font-size: 14px;
    line-height: 1.2;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: #f2f2f2;
    text-align: left;
  }
  
  .umich-logo {
    position: absolute;
    top: 10px;  
    right: 10px; 
    width: 40px; 
    height: auto;
  }

  .education-container {
    display: flex;
    justify-content: center; 
    gap: 30px;              
    flex-wrap: wrap;       
}

.experience-container {
  max-width: 750px;
  margin: 30px auto;
  padding: 0;
}

.experience-item {
  border: 2px solid black;
  border-left: 4px solid goldenrod; 
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


.experience-item h3 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
}

.experience-item p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.experience-item ul {
  padding-left: 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.experience-item li {
  margin-bottom: 6px;
}

body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}
body.dark-mode .nav-button {
  color: white;
}
body.dark-mode .nav-button:hover {
  background-color: gold;
  color: black;
}

.experience-item h3,
.experience-item p,
.experience-item li {
    font-family: monospace; 
    color: black;      
}
.experience-item {
  border-bottom: 2px solid black;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.experience-item span {
    font-family: monospace;
    color: black;
}
.skills-list {
    list-style-type: disc;    
    max-width: 600px;
    margin: 0 auto;
     
    text-align: left;           
    font-family: monospace;     
    font-size: 15px;
    line-height: 1.6;
    color: black;
}
