/* Three Blocks */

.container-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 4.6875rem;
}

.container-blocks .block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #131318;
    border-top: 2px solid #B54D2C;
    padding: 2rem;
    flex: 1 1 280px;
}

.container-blocks .block.center {
    text-align: center;
}

.container-blocks h2 {
    flex: 0 1 100px;
    display: flex;
}

.container-blocks .block.center h2 {
    justify-content: center;
}

.container-blocks .block:hover {
    background-color: #16161b;
}

.container-blocks p {
    flex-grow: 1;
}

.container-blocks a {
    text-decoration: none;
}

.container-blocks a:hover {
    text-decoration: underline;
}