body{
    display: flex;
    flex-direction: column;
    /* margin: 0; */
    /* padding: 0; */
    font-family: Arial, sans-serif;
    background-color: rgb(228, 227, 227);
    text-align: center;
    align-items: center;
    justify-content: center;
    /* grid-template-columns: auto;
    justify-content: center;
    align-items: center;
    align-self: center; */
}

header{
    width: 101%;
}

.nav-buttons {
    background-color: black;
    display: flex;
    justify-content: center;
    padding-right: 5%;
    margin-top: 10px;
}

.nav-button{
    height: 50px;
    width: 150px;
    font-size: 28px;
    background-color: rgba(255, 255, 255, 0);
    color: white;
    border: none;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    /* text-decoration: underline; */
    cursor: pointer;
}

#info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 95%;
}

#info img{
    margin: auto;
}

#info p{
    font-size: 24px;
}

#tag-line{
    margin-top: 0.1%;
    /* line-height: 0.1; */
}

hr{
    width: 100%;
    height: 1px;
    background-color: grey;
}

ul{
    font-size: 20px;
}

#ProjectTitle{
    font-size: 48px;
    margin-top: 0.1%;
}

.projects-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    /* border: 1px solid black; */
}

.project-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 3px solid black; */
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.2);
}

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

.project{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
}

.projectBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.tech-listing{
    background-color: rgb(0, 89, 255);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px;
}

/* #projects-menu-body{
    background-color: white;
} */