#NewBlockInformationsBackground {
    background-color: var(--IconAdd);
    max-width: 1200px;
    height: fit-content;
}

#NewBlockInformations {
    max-width: 100%;
    height: 100%;
    display: grid;
    gap: 10px;
}

#NewBlockInformations>section {
    background-color: var(--Background2);
    display: grid;
    height: minmax(200px, 200px);
    grid-template-columns: 100%;
    grid-template-rows: 1fr 40px;
    border-radius: 5px;
    cursor: pointer;
}

#NewBlockInformations>section>div {
    /* background-color: cadetblue; */
    overflow: hidden;
    width: 100%;
    height: 100%;
    justify-content: start;
    padding: 10px;
    padding-bottom: 0px;
    color: var(--Text2);
    font-family: "Poppins-Regular";
    font-size: 13px;
    border-radius: 5px 5px 0px 0px;
}

#NewBlockInformations>section>p {
    /* background-color: chocolate; */
    height: 100%;
    color: var(--Text2);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 0px 20px;
    overflow: hidden;
    justify-content: center;
    font-family: "Poppins-Medium";
    transition: 0.15s;
    border-radius: 0px 0px 5px 5px;
}

#NewBlockInformations>section:hover>p {
    background-color: var(--Highlight1);
    color: var(--HighlightText1);
}

#BlockGrid>div>div {
    /* background-color: cadetblue; */
    overflow: hidden;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(var(--Text2) 1px, transparent 0);
    background-size: 15px 15px;

}

#BlockText>div>div {
    text-align: justify;
    text-indent: 2em;
}