* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.main_docs {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background-color: transparent;
    display: flex;
    justify-content: center;
}

.inside_docs {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    background-color: transparent;
    margin-top: 130px;
}

.list_docs ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.list_docs li {
    list-style: none;
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: stretch;
    transition: all ease 360ms;
    align-items: flex-start;
    width: 400px;
    height: 200px;
}

.list_docs p {
    font-weight: normal;
    color: white;
    width: 400px;
    font-size: 1.5em;
}

.list_docs li:hover {
    transform: translateY(-10px);
    transition: all ease 360ms;
    background-color: rgb(15, 15, 15);
}

.list_docs h1 {
    font-size: 2.5em;
    font-weight: normal;
    text-decoration: none;
    color: whitesmoke;
    margin-bottom: 20px;
}

.list_docs a {
    text-decoration: none;
}

.list_docs a:hover {
    color: white;
    text-decoration: underline;
}

.list_docs i {
    color: white;
    font-weight: normal;
    font-size: 2.5em;
}

#ask {
    list-style: none;
    border: none;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
    transition: all ease 360ms;
    align-items: center;
    width: 400px;
    height: 200px;
}

#ask:hover {
    transform: none;
    background-color: transparent;
}

#ask h1 {
    font-size: 1.5em;
}

#ask a {
    margin-top: 20px;
    background-color: red;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    box-shadow: 0px 0px 0px 10px red;
    border: 2px solid red;
}

#ask a:hover {
    border: 2px solid white;
    border-style: dotted;
}










@media only screen and (max-width: 600px) {
* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.main_docs {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    margin: 0;
}

.inside_docs {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    background-color: transparent;
    margin-top: 130px;
}

.list_docs ul {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.list_docs {
    width: 100%;
    background-color: transparent;
}
.list_docs li {
    list-style: none;
    border: 1px solid red;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: stretch;
    transition: all ease 360ms;
    align-items: flex-start;
    width: 70%;
    height: 200px;
}

.list_docs p {
    font-weight: normal;
    color: white;
    width: 100%;
    font-size: 1.1em;
}

.list_docs li:hover {
    transform: translateY(-10px);
    transition: all ease 360ms;
    background-color: rgb(15, 15, 15);
}

.list_docs h1 {
    font-size: 2.5em;
    font-weight: normal;
    text-decoration: none;
    color: whitesmoke;
    margin-bottom: 20px;
}

.list_docs a {
    text-decoration: none;
}

.list_docs a:hover {
    color: white;
    text-decoration: underline;
}

.list_docs i {
    color: white;
    font-weight: normal;
    font-size: 2.5em;
}

#ask {
    list-style: none;
    border: none;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
    transition: all ease 360ms;
    align-items: center;
    width: 400px;
    height: 200px;
}

#ask:hover {
    transform: none;
    background-color: transparent;
}

#ask h1 {
    font-size: 1.5em;
}

#ask a {
    margin-top: 20px;
    background-color: red;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    box-shadow: 0px 0px 0px 10px red;
    border: 2px solid red;
}

#ask a:hover {
    border: 2px solid white;
    border-style: dotted;
}

}