#stacksMainContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.centeredContent {
    display: flex;
    flex-direction: column;
    width: 85%;
}
#rightButton {
    height: 50px;
    margin-top: 10px;
}
.centeredContent h1, .centeredContent > p {
    text-align: center;
}
.centeredContent h1 {
    color: #272D37;
    font-size: 36px;
}
.centeredContent p {
    color: #5F6D7E;
    font-size: 16px;
    margin-top: 16px;
}
#stacksCardsContainer {
    margin-top: 50px; 
}
.centeredContentGrid {
    display: flex;
    justify-content: center;
}
.centeredContentGrid ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 960px;
}
.centeredContentGrid ul li {
    margin: 20px;
    border: 1px solid #EAEBF0;
    width: 350px;
    height: 200px;
    border-radius: 5px;
    padding: 20px;
}
.centeredContentGrid ul li {
    transition: box-shadow 0.3s ease;
}
.centeredContentGrid ul li:hover {
    box-shadow: 0 -6px 32px #00000029;
}
.centeredContentGrid ul li h2 {
    color: #272D37;
}
.centeredContentGrid ul li p {
    color: #5F6D7E;
}
.centeredContentGrid ul li a {
    color: #272D37;
    text-decoration: none;
    padding: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}
.centeredContentGrid ul li a:hover {
    background: rgb(60, 60, 255);
    color: white;
}
.primaryButton {
    color: white;
    text-decoration: none;
    padding: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    display: inline-block;
    background: #437EF7;
    font-size: 15px;
}
.primaryButton:hover, .secondaryButton:hover {
    color:white;
}
.secondaryButton {
    color: white;
    text-decoration: none;
    padding: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    display: inline-block;
    background: #44AF69;
    font-size: 15px;
}
#wpcontent {
    background: white;
}
#actionButtonsWrapper {
    display: flex;
    justify-content: space-around;
    width: 400px;
    margin: 30px auto 0 auto;
}
.stacks-large-card {
    position: relative;
    margin: 0 0 40px;
    margin-right: 30px;
    margin-top: 30px;
    padding: 24px;
    border: 0;
    box-shadow: 0 0 8px -2px rgba(0,0,0,.3);
    background: white;
    padding: 75px 37px 63px 30px;
    border-radius: 6px;
    width: 70%;
}

.stacks-large-card:before {
    background-color: #11a0d2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}
.stacks-large-card p, .stacks-large-card h1 {
    color: rgb(30, 30, 30);
    margin: 0px;
    font-weight: normal;
    line-height: 32px;
}

.stacks-large-card h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.stacks-large-card p {
    font-size: 16px;
    color: #4c4c4c;
}