#headingContainer {
    height: 500px;
}

#headingContainer>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#headingContainer>div:hover {
    cursor: pointer;
}

.headingTitle {
    color: white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 20px;
    padding-right: 20px;
}

#partsListContainer {
    background-position-x: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("img/PartList.png");
}

#buildsContainer {
    background-position-y: 30%;
    background-position-x: center;
    background-size: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/BuiltComputer.webp");
}

#hardwareContainer {
    background-position: center center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/Hardware.jpg");
}

.grow {
    transition: transform .2s ease-in-out;
    z-index: 1;
}

.grow:hover {
    transform: scale(1.07);
    z-index: 10;
}