* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
}

.main_containt {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    min-height: 100dvh;
    align-items: center;
    flex-direction: column;
}

.banner {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 60px;
}


.banner h1 {
    border-left: 5px solid red;
    padding-left: 10px;
}

.list_docs {
    width: 100%;
    height: 100%;
    min-height: 50dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.inside_docs {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background-color: transparent;
    margin: auto;
    gap: 20px;
}

.inside_docs li {
    width: 200px;
    height: 200px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.151);
    border-top: 5px solid red;
    justify-content: stretch;
    align-items: flex-start;
    overflow: hidden;
}

.inside_docs a {
    font-size: 1.7em;
    text-decoration: none;
    font-weight: 540;
    color: rgb(94, 94, 224);
}

.inside_docs a:hover {
    text-decoration: underline;
}

.inside_docs p {
    width: 100%;
    word-wrap: break-word;
    margin: 0;
    font-size: 1.0em;
    color: rgba(0, 0, 0, 0.678);
}


@media only screen and (max-width: 600px) {
    .main_containt {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    min-height: 100dvh;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}
}