* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #010409;
    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: 30px;
}

.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;
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: stretch;
    transition: all ease 360ms;
    align-items: flex-start;
    width: 350px;
    height: 150px;
    background-color: #16171d;
    border-radius: 2px;
    transition: all ease 360ms;
}

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

.list_docs li:hover {
    transform: translateY(-10px);
}

.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;
}

.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;
    background-color: unset;
}

#ask:hover {
    transform: unset;
}
#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;
}


