html {
    height: 100%;
}
  
body {
    background-color: white;
    position: relative;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}
  
main {
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gray;
    background-color: khaki;
    border-color: black;
    font-family: "Helvetica";
}
  
  /* CSS for navigation bar */
  
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 7%;
    z-index: 10;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  
    background-color: gold;
    color: white;
    padding: 0px 0px;
    border: 1px solid black;
  
    /* Debug border */
    /* border: solid red; */
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(242, 221, 35);
    border: 1px solid black;
    margin-bottom: 20px;
    border-radius: 5px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  }

.about-image{
    display: block;
    padding: 0 20px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.nav-list {
    display: flex;
    flex-direction: row;
    position: relative;
    right: 30px;
    list-style: none;
}
  
.navbar a {
    color: gray;
    font-weight: bold;
    margin: 0 12px;
    text-decoration: none;
    letter-spacing: 2px;
}
  
  /* CSS for page footer */
  
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
}
  
.project {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    margin: 1em 0 2em 0;
    border: 1px solid black;
    background-color: rgb(242, 221, 35);
    /* Debug border */
    /* border: 2px solid blue; */
}
.project-details {
    display: flex;
    background-color: var(--cg-white);
    width: 30%;
    height: 500px;
    flex-shrink: 1;
    padding: 0 20px;
    margin: 0px;
    line-height: 1.5;
    overflow: scroll;
  
    flex-direction: column;
    text-align: center;
    font-family: "Helvetica";
    justify-content: center;
  
    /* Debug border */
    /* border: 2px solid green; */
}
  
.project-details a {
    color: var(--cg-black);
    font-family: "Georgia";
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}
  
.project-details a:hover {
    color: var(--cg-blue);
    font-family: "Georgia";
    text-decoration: underline;
}
  
.project-details {
    font-weight: lighter;
}
  
.project-name {
    font-weight: bold;
    font-size: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia;
    font-weight: bold;
}
  
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    resize: none;
}

