body {
    background-color: rgb(237, 242, 247);
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto 50px;
    padding: 1em;
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: 1180px;
    font-size: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgb(65, 65, 65);
    line-height: 1em;
    font-weight: 500;
}

h1 {
    font-weight: normal;
    font-size: 2.5em;
}

.data {
    display: flex;
    flex-direction: column;
    margin: 10px 4px;
}

.data article h2 {
    border-bottom: 1px solid rgb(173, 173, 173);
    padding: 0 4px;
    padding-bottom: 15px;
}

.data-elements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 2em;
    margin-bottom: 25px;
}

.element-container {
    background-color: rgb(255, 255, 255);
    color: rgb(65, 65, 65);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 5px;
    padding: 25px;
    transition: color, background-color .3s ease-in-out;
    font-weight: 500;
    min-width: 150px;
}

.element-container:hover {
    background-color: #2b6cb0;
    color: white;
}

.element {
    display: flex;
    align-items: center;
}

.element .fa {
    margin-right: 5px;
}

.element-number {
    margin-top: 10px;
    font-size: 2em;
    font-weight: 700;
}

p {
    margin: 0;
    padding: 0;
    font-weight: 600;
}

@media only screen and (max-width: 945px) {
    .data-elements {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width:751px) {
    .data-elements {
        grid-template-columns: repeat(1, 1fr);
    }
}
