


body {
    background-color: #222629; /* #131415 | #222629; */ 
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    color: rgb(238, 238, 238);
    /*background-image: url("../images/somepicture.png");*/
    background-size:cover;
    background-repeat: no-repeat;
}

p {
    padding-left: 20px;
    padding-right: 20px;
}

main a {
    color: rgb(238, 238, 238);
}


header {
    position: fixed;
    width: 100%;
    top: 0;
    min-width: 335px;
    z-index: 1;
    
}

nav {
    background-color: black;
    height: 63px;
    display: flex;
    justify-content: center;
    
}

nav span {
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    border: 2px solid #574747;
}


#navTable {
    display: flex;
    justify-content: center;
    border-spacing: 0px;
}



 #navTable td {
    /* border-bottom: 5px solid rgb(255, 255, 255); */
    height: 54px;
    width: 120px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
} 

.detailThumbnails {
    margin-top: 50px;
}



#gridWrapper {
    max-width: 900px;
    min-width: 450px;
    height: 1500px;
    margin: 75px auto 0px auto;
    margin-bottom: 100px;
    display: grid;
    grid-template-rows: repeat(16, 1fr);
    grid-template-columns: repeat(6, 1fr);
    border-radius: 1px solid black;
    
}

#backgroundWrapper {
    height: 100%;
    grid-column: 1 / span 6;
    grid-row: 2 / 17;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #332f2f82
}

a.navlinks {
    position: relative;
    color: #dcdcdc;
    text-decoration: none;
    padding: 5px;
}

a.navlinks::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #6B6E70;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

a.navlinks:hover {
    color: #cdfd93;
}

a.navlinks:hover::before {
    transform: scaleX(1);
}

.darkModeSwap {
    color: black;
    background-color: #b8aaaa;
    background-image: none;


}

#darkModeButtonToggle {
    display: block;
    min-height: 20px;
    min-width: 20px;
    margin: 0px 4px 4px 0px;
    align-self: center;
    
}

.darkLightModeButtonToggle {
    background-color: #000000;
    border-color: #ffffff;
}

#contactMe {
    min-width: 325px;
    padding-right: 60px;
    height: 250px;
    margin-top: 45px;
}

#contactList li {
    min-width: 150px;
    list-style: none;
    text-align: left;
    font-size: 0.92em;
    padding: 5px 0px 5px 30px;
    margin: -5px 0px 0px 75px;
}

.projectListItem {
    list-style: none;
    text-align: center;
}

.contentContainerProject { 
    text-align: center;
}

.contactLinks {
    color: #000000;
}

.linkColorSwap {
    color: #000000; 
}

#mainDiv {  
    width: 45.6em;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    font-size: 1.3em;
    /*background-color: #61892F; */
    padding: 5px;
}

#mainContent {
    float: none;
    margin: auto;
    justify-content: center;
    height: 500px;

}

#mainContent button {
    display: flex;
    margin: 35px auto 0px auto;
    justify-content: center;
    
}


#textAdviceDiv {
    display: flex;
    text-align: center;
    width: 600px;
    height: 100px;
    background-color: #313030;
    margin: 85px auto 0px auto;
    border-radius: 25px;
    align-items: center;
}

#textAdviceDiv p {
    text-align: center;
    margin: auto;
    font-weight: bold;
    font-size: 1.5em;
    
}

#generateButton {
    background-color: #313030;
    color: white;
    border: 2px solid #504141;
    padding: 15px 32px;
    font-weight: 700;
    box-shadow: 0px 9px 18px 4px #000000;
    
}

#generateButton:hover {
    box-shadow: -2px 12px 16px 0 #3c3c3c
}

#generateButton:active {
    box-shadow: 0px 0px 27px 0px #939393
}

#fourthGridItem h3 {
    text-align: center;
}