.heading {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
}

.name {
    font-size: 40px;
}

.container {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-cell {
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 10px;
    margin-bottom: 10px;
}

.repo-link-panel {
    align-self: end;
    display: flex;
    justify-self: end;
}

.repo-link {
    align-self: center;
    display: flex;
    text-decoration: none;
    color: gray;
}

.project-panel {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
}

.project-image {
    width: 200px;
    height: 150px;
}

.project-title {
    font-size: 20px;
    text-decoration: none;
    color: black;
}

.project-description {
    color: darkgray;
}

.repo-icon {
    height: 25px;
    width: 25px;
    align-self: center;
}

.icon-tray {

}

.icon-tray img {
    height: 50px;
    width: 50px;
}

.photo-tray {
    display: flex;
    justify-content: center;
}

.photo {
    margin: 20px;
    height: 20%;
    width: 20%;
}

.menu-bar {
    justify-content: center;
    display: flex;
}

.menu-item {
    margin: 20px;
    font-size: 30px;
}

.experience-container {
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 10px;
}

.experience-cell {
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
}

.experience-line {
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-icon {
    height: 20px;
    margin-right: 10px;
}

