.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* align-content: center; */
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

section {
    background-color: rgba(245, 245, 245, 0.5);
    box-shadow: 0 4px 8px 0 rgba(0,0,0, 0.4);
    margin: 1rem;
    /* max-width: 95%; */
    border-radius: 1rem;
    padding: 1rem;
    line-height: 1.5;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    flex-wrap: wrap;
    flex: 1 1;
}

.nav header .title {
    padding: 0rem 1rem;
}

.nav header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex: 1 1;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.75);
    color: rgba(222, 197, 153, 1);
    border-radius: 1rem;
    margin: 1rem 1rem 0rem 1rem;
    font-family: 'Courier New', Courier, monospace;

}
.nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* background-color: rgba(0, 0, 0, 0.75); */
    /* color: rgba(222, 197, 153, 1); */
    list-style-type: none;
    padding: 3rem 0rem 0.5rem 0rem;
    font-size: large;
    flex: 1 1 50%;
    
}
.nav ul li {
    flex-wrap: wrap;
    cursor: pointer;
    margin: 0rem 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.nav ul li:hover {
    color: rgba(255, 255, 255, 0.5);
}

.profile__image {
    width: 20rem;
    height: 13rem;
    /* width: 400px; */
    border-radius: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0,0,0, 0.4);
}
.image__container {
    margin: 1rem;
}

/* .content {
    display: flex;
} */
.about {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    
}
.bio {
    margin: 0rem 2rem;
    flex: 1 0 50%;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.75);
    color: rgba(222, 197, 153, 1);
    border-radius: 1rem;
    margin: 1rem 1rem 1rem 1rem;
    font-family: 'Courier New', Courier, monospace;

}
footer ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* background-color: rgba(0, 0, 0, 0.75); */
    /* color: rgba(222, 197, 153, 1); */
    list-style-type: none;
    padding: 3rem 0rem 0.5rem 0rem;
    font-size: large;
    width: 60%;
    
}
footer ul li {
    cursor: pointer;
    margin: 0rem 0.5rem;
}
.projects {
    display: flex;
    flex-direction: column;
}
.project__cards {
    display: flex;
    flex-direction: row;
    flex: 1 1;
    flex-wrap: wrap;

}
.project {
    box-shadow: 0 4px 8px 0 rgba(0,0,0, 0.4);
    border-radius: 1rem;
    margin: .5rem;
    width: 45%;
    height: auto;
    overflow: auto;

}

.project:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
  }

/* .item--card {
    background-color: rgba(46, 196, 182, 1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
    border-radius: 0.4rem;
    margin: .5rem;
    padding: 1rem;
    width: 15rem;
    height: 25rem;
    font-family: 'Courier New', Courier, monospace;
} */

.click__container {
    padding: 1rem;
}