html {
    height: 100%;
    width: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f5;
    margin: 0px;
}

.topnav {
    background-color: #184b46;
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 80px;
    position: sticky;
    display: flex;
    justify-content: space-between; /* Adjust as needed */
    align-items: center;
}

a:link, a:visited {
    color: #a58c83;
}

a:hover {
    color: #184b46;
}

.topnav a, .topnav-right a {
    float: left;
    color: #eeeae4;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 17px;
}

.topnav-right {
    float: right;
}

.topnav .icon i, .footer .icon i {
    font-size: 30px;
    padding: 20px;
    color: white;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #184b46;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: #a58c83;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #eeeae4;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #bcba90;
}

.dropdown:hover .dropdown-content {
    display: inline-block;
}


.image img {
    max-width: 100%;
}

.Thesis, .SRP, .CourseBooklet, .AmazonExpense,
.Flyers {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.SRP img, .CourseBooklet img, .AmazonExpense img {
    max-width: 80%;
}

.Thesis img {
    max-width: 50%;
}

.Flyers {
    display: flex;
}

.intro {
    display: grid;
    margin: auto;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    /*width: 80%;*/
    padding-top: 10px;
}

.writtenSamples1 .grid-item img,
.leadership1 .grid-item img {
    max-width: 60%;
}

.leadership p, .awards p, .work p {
    padding-left: 8%;
    padding-right: 8%;
}

.contactInfo {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
}

.writtenSamples1 {
    display: grid;
    margin: auto;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    /*width: 80%;*/ /* Set a fixed width for the grid container if desired */
    padding-bottom: 5%;
}

.writtenSamples1 p, .writtenSamples1 h4, .spokenSamples1 p, .spokenSamples1 h4, .work p, .work h4 {
    font-size: 18px;
}

.grid-item h5 {
    font-size: 16px;
}

.writtenSamples1 h3, .spokenSamples1 h3, .work h3 {
    font-size: 20px;
}

.spokenSamples1 {
    display: grid;
    margin: auto;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5% 2%;
    width: 90%; /* Set a fixed width for the grid container if desired */
    padding-bottom: 5%;
}

.leadership1 {
    display: grid;
    margin: auto;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    width: 80%; /* Set a fixed width for the grid container if desired */
    padding-bottom: 0;
}

.grid-item {
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.Flyers img {
    max-width: 25%;
    padding: 20px;
}

h1, h2, h3 {
    text-align: center;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #D0B0B0;
    max-width: 80%;
    margin: auto;
    text-align: center;
    border-radius: 10px;
}

.footer {
    width: 100%;
    background-color: #184b46;
    overflow: hidden;
    text-align: center;
    margin: 0;
}

.footer h4, .footer h3 {
    color: #eeeae4;
}