* {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #010409;
}

/* maincontaint */

.main_bridge {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inside_bridge {
    width: 60%;
    height: 100%;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #16171d;
    border-radius: 5px;
    border: 1px solid #f1f1f110;
}

.inside_bridge h1 {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0px;
}
.list_docs {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #f1f1f110;
    margin-top: 10px;
}

.every-docs {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.every-docs li {
    list-style: none;
}

.every-docs a {
    font-size: 20px;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
}

.every-docs a:hover {
    color: #5211f8;
}

.every-docs i {
    color: #367bf0;
}


@media only screen and (max-width: 600px) {
/* maincontaint */

.main_bridge {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inside_bridge {
    width: 90%;
    height: 100%;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #16171d;
    border-radius: 5px;
    border: 1px solid #f1f1f110;
}

.inside_bridge h1 {
    width: 90%;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 20px 0px;
    word-break: break-all;
}
.list_docs {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #f1f1f110;
    margin-top: 10px;
}

.every-docs {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.every-docs li {
    list-style: none;
}

.every-docs a {
    font-size: 17px;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
}

.every-docs a:hover {
    color: #5211f8;
}

.every-docs i {
    color: #367bf0;
}

} 