* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Poppins", sans-serif; */
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

header {
    display: flex;
    align-items: center;
    width: 100%;
    background-image: linear-gradient(rgba(112.520718, 44.062154, 249.437846, 1), rgba(112.520718, 44.062154, 249.437846, 1));
    padding: 0px 15%;
}

.logo-img {
    width: 50px;
    padding: 5px;
    margin-right: 3px;
    transition: 0.3s;
}

.logo-img:hover {
    transform: rotate(-7deg) scale(1.1);
}

.h-container {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.a1 {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 6px;
    font-size: 1rem;
    transition: .3s;
}

.a1:hover,
.a1:focus-within {
    color: rgba(255, 255, 255, 1);
    transition: .3s;
}

.s1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.search-box {
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(83, 33, 183, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 8px 5px 10px;
    border-radius: 5px;
    outline: 4px solid none;
}

.search-box input {
    /* width: 70px; */
    width: 100%;
    padding: 0px 10px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
}

.s-button {
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-family: monospace;
    /* white-space: nowrap; */
    cursor: pointer;
}

.search-box:hover,
.search-box:focus-within {
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgb(83, 33, 183);
    outline: 4px solid rgba(212, 165, 165, 0.7);
}

.search-box:hover i,
.search-box:focus-within i {
    color: rgba(255, 255, 255, 0.96);
}

.search-box:hover input::placeholder,
.search-box:focus-within input::placeholder {
    color: rgba(255, 255, 255, 0.96);
}

.search-box:hover .s-button,
.search-box:focus-within .s-button {
    color: rgba(255, 255, 255, 0.96);
    background-color: rgba(0, 0, 0, 0.5);
}

.search-box i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}



.span1 {
    color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scaleY(1.8);
    margin: 0px 10px;
    margin-top: 5px;
    cursor: default;
}

.social i {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 6px;
    font-size: 1rem;
    transition: .3s;
}

.social i:hover {
    color: rgba(255, 255, 255, 1);
    transition: .3s;
}

.version pre,
.version a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 6px;
    font-size: 1rem;
    transition: .3s;
}

.version a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: .3s;
}

.version pre:hover,
.version a:hover {
    color: rgba(255, 255, 255, 1);
    transition: .3s;
}

.mode i {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 8px 6px;
    font-size: 1rem;
    transition: .3s;
}

.mode i:hover {
    color: rgba(255, 255, 255, 1);
    transition: .3s;
}

.fa-caret-down {
    color: rgba(255, 255, 255, 0.85);
    padding-left: 5px;
}

.fa-caret-down {
    transform: scale(0.7);
}

.version pre:hover .fa-caret-down,
.mode i:hover .fa-caret-down {
    color: rgba(255, 255, 255, 1);
    transition: .3s;
}

section {
    min-height: calc(100vh - 60px);
    width: 100%;
    background: linear-gradient(to bottom,
            #003a8b 0%,
            #3a2152 40%,
            #1e1e1e 80%);
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

section main {
    text-align: center;
    color: white;
    padding: 0 15px;
    /* width: 100%; */
    width: 66.66666667%;
}

main .u-panel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main .u-panel .a2 {
    background-color: #ffe484;
    margin: 50px 15px 25px 15px;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
}

main .u-panel .a2 .fa-arrow-right {
    color: rgba(0, 0, 0, 0.7);
    transform: scaleY(0.8);
    font-size: 15px;
    padding-left: 3px;
}

main h1 {
    margin: 10px 0px;
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 550;
}

main p {
    font-size: calc(1.275rem + .3vw);
    /* font-size: 1rem; */
    font-weight: 100;
    line-height: 1.5;
    color: rgba(222, 226, 230, 0.75);
    margin-bottom: 20px;
}

.d-flex {
    cursor: default;
}

.install-box {
    background-color: #2a2c31;
    border: 1px solid #3e4146;
    border-radius: 8px;
    padding: 18px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.install-code {
    margin: 0;
    font-family: monospace;
    font-size: 1em;
    /* font-size: inherit; */
    overflow: hidden;
    cursor: text;
}

.install-code span:first-child {
    color: #868e96;
}

.install-code span:nth-child(2) {
    color: #79dfc1;
}

.install-code span:nth-child(3) {
    color: #dee2e6;
}

.copy-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}

.fa-clipboard,
.fa-book-open {
    font-size: 22px;
    padding: 0px 3px;

}

.read-docs-btn {
    background-color: #712cf9;
    color: white;
    border: none;
    padding: 18px 20px;
    margin-left: 10px;
    margin-top: 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.read-docs-btn:hover {
    background-color: #6528e0;
}

.version-text {
    margin-top: 30px;
    font-size: 16px;
    color: rgba(222, 226, 230, 0.75);
    margin-bottom: 30px;
}

.a3 {
    color: rgb(108, 117, 125);
    text-decoration: underline;
}

.a3:hover {
    text-decoration: none;
}