.container {
    font-family: "Public sans", sans-serif;
    max-width: 1100px;
    margin: 0px auto;
}
.analytics_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}
.head {
    font-size: 22px;
    font-weight: 500;
}

@media screen and (max-width: 950px) {
    .analytics_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 550px) {
    .analytics_container {
        grid-template-columns: repeat(1, 1fr);
    }
}
