html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* html, body {
    height: 100%;
} */
  

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

h1 {
    margin: 0;
    padding-left: 30px;
    font-size: 36px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

a{
    color: white;
    text-decoration: none;
}

header h1 a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding-right: 20px;
}

nav{
    margin-right:20px;
}

ul li {
    margin: 0 30px;
    font-size: 22px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    text-align: center;
    background-color: white;
    margin: 20px auto;
    width: 75%;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

input, textarea {
    margin: 15px 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 95%;
    height:5vh;
}

textarea{
    height: 30vh;
}

#contactHead{
    margin-top: 2vh;
}

button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding-top: 10px;
    background-color: #333;
    color: white;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 30px;

}

h2{
    text-align:center;
    font-size: 36px;
    margin-top:5px;
}

h3{
    font-size: 28px;
}

#school{
    width: 30em;
    border-radius:8px;
    margin:10px 5px;
}

#rhino{
    width: 18em;
    border-radius:8px;
}

#strat{
    width: 20em;
    border-radius:8px;
}


p{
    font-size: 20px;
}

a.color-link{
    color:black !important;
    text-decoration: underline !important;
}


#resumeLink{
    font-size:larger;
    font-weight: bold;
}

#transLink{
    font-size:larger;
    font-weight: bold;
}

.info-para{
    margin: 0px 4.5vw;
}

.me{
    font-size:2.5vw;
}

.file{
    width:15vw;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }
  .project-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 15px;
    max-width: 550px;
    overflow: hidden;
    text-align: center;
    /* height: 550px; */
  }
  .project-card img {
    /* width: 100%; */
    height: 50vh;
  }
  .project-info {
    padding: 15px;
  }
  .project-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  #contact{
    width: 20em;
    border-radius:8px;
    height:72.5vh;

  }

  @media only screen and (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    h1 {
      padding-left: 0;
      font-size: 30px;
    }
  
    nav ul {
      flex-direction: column;
      padding-right: 0;
    }
  
    ul li {
      margin: 10px 0;
      font-size: 20px;
    }
  
    section {
      width: 90%;
      padding: 10px;
    }
  
    .info-para, .me {
      margin: 0 10px;
      font-size: 18px;
    }
  
    .me {
      font-size: 5vw;
    }
  
    .file {
      width: 50vw;
    }
  
    .projects-container {
      flex-direction: column;
      align-items: center;
    }
  
    .project-card {
      width: 90%;
      max-width: none;
    }
  
    .project-card img {
      width: 100%;
      height: auto;
    }
  
    input, textarea {
      width: 90%;
      height: auto;
    }
  
    button {
      width: 90%;
      margin: 10px auto;
    }
  
    #school, #rhino, #strat, #contact {
      width: 90%;
      height: auto;
    }
  
    h2 {
      font-size: 28px;
    }
  
    h3 {
      font-size: 24px;
    }
  
    p {
      font-size: 18px;
    }
  
    footer {
      font-size: 16px;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #333;
      }
    
      nav.show {
        display: flex;
      }
    
      nav ul {
        flex-direction: column;
        padding: 0;
      }
    
      ul li {
        margin: 10px 0;
      }
    
      header {
        flex-direction: column;
        align-items: center;
      }
    
      h1 {
        cursor: pointer;
      }
      #trans img{
        width: 100%;
        height: auto;
      }
      #resume img{
        width: 100%;
        height: auto;
      }

  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
    /* margin: 30px 4.5vw;
    width: 80%; */
    background: linear-gradient(135deg, #ffffff, #4c4c4c);
    border-radius: 16px;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
  }
  
  .hero-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #333;
    transition: transform 0.3s ease;
  }
  
  .hero-img:hover {
    transform: scale(1.30);
  }
  
  .hero-text {
    max-width: 600px;
    text-align: center;
  }
  
  .hero-text h2 {
    font-size: 76px;
    color: #3e3e3e;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 34px;
    color: rgb(84, 84, 84)e3e;
    line-height: 1.6;
  }


#content{
    flex: 1;
}


.cert-img{
  height: 50vh;
}

#certs-container{
  background-color: #f4f4f4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  box-shadow: none;
}

.certs h3{
  text-decoration: underline;
  margin-bottom:3px;

}

.certs{
  background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 15px;
    max-width: 550px;
    overflow: hidden;
    text-align: center;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  margin: 10px auto;
  width: 80%;
  border-radius: 5px;
  text-align: center;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px;
  margin: 10px auto;
  width: 80%;
  border-radius: 5px;
  text-align: center;
}

#checklist img{
  width: 60%;
  height: auto;
  margin:auto;
}




