<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* index.html */

.page {
    /* border: 1px solid #4E0D3A; */
    padding: 0;
    border-radius: 5px;
}

.title h4 {
    padding: 13px 10px;
    text-align: center;
    background-color: #4E0D3A;
    color: white;
    font-weight: bold;
}

.col {
    padding: 0;
}

.col h3 {
    margin: 0;
    padding: 10px 10px;
    background-color: #4E0D3A;
    color: white;
    font-weight: bold;
    font-size: 23px;
}

.body {
    margin: 20px;
}

.btn {
    padding: 30px 0px;
    font-weight: bold;
    background-image: linear-gradient(to bottom right, #4E0D3A, #720D5D);
    color: white;
}

.col-6 a {
    text-decoration: none;

}

.card:hover {
    color: white;
}

.card {
    margin: 10px 0px;
    border: 1px solid #340927;
}

.item {
    padding: 10px;
}


/* list inside index items */

nav {
    background-color: #4e0d3a;
    text-align: center;
    padding: 3px;
}

#input {
    width: 100%;
    display: none;
}

#close {
    display: none;
}

i {
    cursor: pointer;
    font-size: 20px;
    color: white;
    padding: 0px 20px;
}

.head {
    background-color: #4e0d3a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 10px; */
    color: #fff;
    /* z-index: 1; */
}

.heading {
    display: flex;
    align-items: center;
}

/* .list-group-numbered&gt;.list-group-item::before {
    content: counters(section, ".") " ";
    counter-increment: section;
    margin: 10px 10px;
    border: 1px solid #4E0D3A;
    border-radius: 50%;
    padding: 9px 16px;
    background-color: #720D5D;
    color: white;

} */

a {
    text-decoration: none;
    color: black;
    text-transform: capitalize;
}

/* footer .btn {
    width: 50px
} */

li a {
    display: flex;
    align-items: center;
}

li label {
    /* border: 1px solid #4E0D3A;
    background-color: #4E0D3A;
    padding: 10px 20px;
    border-radius: 50%;
    margin-right: 20px;
    color: white; */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: #4E0D3A;
}

h4 .btn {
    padding: 0;
    display: flex;
    justify-content: space-between;
}

@media (min-width: 578px) and (max-width: 915px) {
    .btn {
        padding: 40px;
        /* font-size: 25px; */
    }
}

@media (min-width:915) {
    .btn {
        padding: 20px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 20px 0px;
    }
}


/* /////////////////  ALternate Colour Css  //////////////////////// */

.list-group-item:nth-child(even) {
    color: blue;
}

.list-group-item:nth-child(odd) {
    color: red;
}


/* //////////////  Alternate Colour Css End  ///////////////////////// */


/* /////////// not-Selection CSS /////////////// */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* /////////// not-Selection CSS End  /////////////// */
</pre></body></html>