body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    height: auto;
    background: linear-gradient(to right, #000021 -10%, #020253 50%, #000021 110%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100px;
    width: 100%;
    background: linear-gradient(to bottom, black, transparent);
    padding: 0 20px;
    padding-top: 5px;
    box-sizing: border-box;
    z-index: 1000;
    margin-bottom: 15vh;
}

.tl-main-logo
{height: 40px;}

#tl-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.uLine,
.bLine {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

.bLine {
    width: 25px;
}

#up-social-icons {
    display: flex;
    gap: 10px;
}

#up-social-icons img {
    width: 35px;
    height: 35px;
    cursor: pointer;
}


/****************************************************Menu Code */
#tl-menu-dropdown {
    position: absolute;
    top: 20%;
    right: 43%;
    background-color: #010343;
    color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px 5px #ffffff;
    display: none;
    /* Hidden by default */
    z-index: 1500;
    text-align: center;
}

#tl-menu-dropdown ul {
    width: 150px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#tl-menu-dropdown li {
    padding: 10px 0;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 600;
}

#tl-menu-dropdown li:hover {
    background-color: #4f53de;
}

#tl-menu-dropdown.visible {
    display: block;
}

.hidden {
    display: none;
}



/********************************************Center Content Code */
#center-content {
    padding-left: 150px;
        padding-right: 150px;
    padding-top: 10vh;
}

h1 {
    text-align: center;
    text-decoration: underline;
}

h2 {
    margin-top: 50px;
}

h1,
h2 {
    font-family: Arial, cursive;
    color: #00e2ff;
    font-weight: 200;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li a {
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}


/********************************************footer Code */
footer {
    position: relative;
    bottom: 0;
    left: 0;
    height: 15vh;
    width: 100%;
    background: linear-gradient(to top, black, transparent);
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Horizontal center */
    align-items: center;
    /* Align at bottom */
    margin-top: 15vh;
}

footer p {
    color: white;
    font-family: sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    /* Add space from bottom */
}

footer a {
    color: #00e2ff;
    text-decoration: underline;
}

#bt-social-icons {
    display: none;
}



/********************************************Media Query Code */
/* ========== Max Width 1440px ========== */
@media (max-width: 1440px) {
    /*header adjustment----------------*/
    #up-social-icons img,
    #bt-social-icons img {
        width: auto;
        height: 35px;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 120px;
        padding-right: 120px;
    }
    
    /*footer adjustment----------------*/
    footer{height: 7vh;}
}








/* ========== Max Width 1366px ========== */
@media (max-width: 1366px) {
    /*header adjustment----------------*/
    #up-social-icons img,
    #bt-social-icons img {
        width: 2.55vw;
    }

    .tl-main-logo {
        height: 35px;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 100px;
        padding-right: 100px;
    }
    
    /*footer adjustment----------------*/
    footer{
        height: 5vh;
    }
    
}








/* ========== Max Width 1280px ========== */
@media (max-width: 1280px) {
    /*header adjustment----------------*/

    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    /*footer adjustment----------------*/
    footer p {
        font-size: 1rem;
    }
    
}








/* ========== Between 1080px and 1279px ========== */
@media (max-width: 1279px) and (min-width: 1080px) {
    /*header adjustment----------------*/
    #up-social-icons img,
    #bt-social-icons img {
        width: auto;
        height: 40px;
    }

    .tl-main-logo {
        height: 50px;
    }

    .uLine,
    .bLine {
        width: 4vw;
        margin-top: 9px;
    }

    #tl-menu-dropdown {
        right: 38%;
    }

    #tl-menu-dropdown {
        padding: 1vw 2vw;
    }

    #tl-menu-dropdown li {
 
        font-size: 24px;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    /*footer adjustment----------------*/
    footer {
        position: absolute;
        height: 5vh;
        margin-top: 5vh;
        bottom: 0;
        left: 0;
    }

    footer p {
        font-size: 1rem;
    }
    
}








/* ========== Max Width 1024px ========== */
@media (max-width: 1024px) {
    /*header adjustment----------------*/
    .tl-main-logo{
        height: 40px ;        
    }
    
    #up-social-icons img,
    #bt-social-icons img {
        width: auto;
        height: 30px;
    }

    #tl-menu-dropdown {
        right: 39%;
        text-align: center;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    h1, h2 {
        font-size: 1.8rem;
    }

    body {
        line-height: 1.55;
    }
    
    /*footer adjustment----------------*/
    
    
}








/* ========== Max Width 800px ========== */
@media (max-width: 800px) {
    /*header adjustment----------------*/
    header {
        justify-content: space-between;
    }

    .tl-main-logo {
        flex: 1;
        height: 30px;
    }

    #tl-menu {
        flex: 1;
        align-items: flex-end;
        text-align: center;
        padding-right: 5px;
        padding-top: 5px;
    }
    
        #tl-menu-dropdown {
        top: 30px;
        right: 30px;
            padding: 15px;
    }
    
    #tl-menu-dropdown ul{
        width: auto;
    }
    
        #tl-menu-dropdown li {
            padding: 1vh 0;
            font-size: .9rem;
    }

    .uLine,
    .bLine {
    width: 25px;
    height: 2px;
    margin: 3px 0;

    }

    #up-social-icons {
        display: none;
    }

    #bt-social-icons {
        display: flex;
    }

    #bt-social-icons img {
        height: 25px;
        margin-right: 10px;
    }


    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    h1, h2 {
        font-size: 1.6rem;
    }

    body {
        line-height: 1.5;
    }
    
    /*footer adjustment----------------*/
    footer {
        height: 15vh;
    }

    footer p {
        margin-bottom: 3px;
        font-size: .7rem;
    }
    
}








/* ========== Max Width 768px ========== */
@media (max-width: 768px) {
    /*header adjustment----------------*/
    .tl-main-logo {
        height: 40px;
    }

    #tl-menu {
        padding-right: 20px;
        padding-top: 15px;
    }

    .uLine,
    .bLine {
        width: 4vw;
        height: 4px;
    }

    #bt-social-icons img {
        height: 30px;
    }


    #tl-menu-dropdown {
        top: 35%;
        right: 5%;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 25px;
        padding-right: 25px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    body {
        line-height: 1.5;
    }
    
    /*footer adjustment----------------*/
    footer{
        height: 5vh;
        margin-top: 8vh;
    }
    
    footer p {
        font-size: .7rem;
    }
    
}








/* ========== Between 601px and 667px ========== */
@media (max-width: 667px) and (min-width: 601px) {
    /*header adjustment----------------*/
    header {
        height: 35px;
    }

    .tl-main-logo {
        height: 25px;
    }

    #tl-menu {
        padding-top: 5px;
        padding-right: 5px;
    }

    .uLine,
    .bLine {
        width: 3vw;
        height: 2px;
    }

    #tl-menu-dropdown {
        top: 30px;
        right: 25px;
        padding: 10px;
    }

    #tl-menu-dropdown li {
        font-size: .8rem;
        padding: 5px 10px;

    }
    
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 25vh;
        padding-bottom: 10vh;
    }

    h1 {
        font-size: 1.35rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    p, li {
        font-size: 0.95rem;
    }

    body {
        line-height: 1.45;
    }
    
    /*footer adjustment----------------*/
    footer{
        height: 20vh;
    }
    
    footer p {
        font-size: .7rem;
    }

    #bt-social-icons img {
        height: 30px;
    }
    
}








/* ========== Max Width 600px ========== */
@media (max-width: 600px) {
    /*header adjustment----------------*/
    header {
        height: 8vh;
    }

    .tl-main-logo {
        height: 40px;

    }

    #tl-menu {
        padding-top: 5px;
        padding-right: 5px;
    }

    .uLine,
    .bLine {
        width: 4vw;
        height: 3px;
    }

    #tl-menu-dropdown {
        top: 30px;
        right: 25px;
        padding: 10px;
    }

    #tl-menu-dropdown li {
        font-size: .9rem;
        padding: 10px 10px;

    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    body {
        line-height: 1.45;
    }
    
    /*footer adjustment----------------*/
    footer p {
        font-size: .7rem;
    }

    #bt-social-icons img {
        height: 30px;
    }
    
}








/* ========== Max Width 480px ========== */
@media (max-width: 480px) {
    /*header adjustment----------------*/
    header{
        padding: 5px 15px;
    }
    #tl-menu {
        padding-top: 10px;
        padding-right: 10px;
    }

    .uLine,
    .bLine {
        width: 4vw;
        height: 2px;
        margin: 2px 0;
    }

    .tl-main-logo {
        height: 30px;
    }

    #tl-menu-dropdown {
        top: 20px;
        padding: 5px;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    p, li {
        font-size: 0.9rem;
    }

    body {
        line-height: 1.4;
    }
    
    /*footer adjustment----------------*/
    footer p {
        font-size: .55rem;
    }
    
        #bt-social-icons img {
        height: 25px;
    }
}








/* ========== Max Width 432px ========== */
@media (max-width: 432px) {
    /*header adjustment----------------*/
    .tl-main-logo {
        height: 30px;
    }
    
    #tl-menu{
        padding: 0;
        padding-top: 5px;
    }

    .uLine,
    .bLine {
        width: 5vw;
        margin-top: 3px;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 0.95rem;
    }

    p, li {
        font-size: 0.9rem;
    }

    body {
        line-height: 1.4;
    }
    
    /*footer adjustment----------------*/
    footer {
        height: 5vh
    }

    #bt-social-icons img {
        height: 25px;
        widows: auto;
    }
    
}





/* ========== Max Width 414px ========== */
@media (max-width: 414px){}




/* ========== Max Width 390px ========== */
@media (max-width: 390px) {
    /*header adjustment----------------*/
    
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    h1 {
        font-size: 1rem;
    }

    h2 {
        font-size: 0.9rem;
    }

    p, li {
        font-size: 0.85rem;
    }

    body {
        line-height: 1.35;
    }
    
    /*footer adjustment----------------*/
    
    
}








/* ========== Max Width 375px ========== */
@media (max-width: 375px) {
    /*header adjustment----------------*/
    
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 9px;
        padding-right: 9px;
    }

    h1 {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 0.85rem;
    }

    p, li {
        font-size: 0.83rem;
    }

    body {
        line-height: 1.33;
    }
    
    /*footer adjustment----------------*/
    
    
}








/* ========== Max Width 360px ========== */
@media (max-width: 360px) {
    /*header adjustment----------------*/
    #tl-menu-dropdown li{
        font-size: .8rem;
    }
    
    /*center adjustment----------------*/
    h1 {
        font-size: .9rem;
    }

    h2 {
        font-size: 0.85rem;
    }

    p, li {
        font-size: 0.85rem;
    }

    body {
        line-height: 1.35;
    }
    
    /*footer adjustment----------------*/
    
    
}








/* ========== Max Width 320px ========== */
@media (max-width: 320px) {
    /*header adjustment----------------*/
    header {
        height: 10vh;
        padding: 5px;
    }

    .tl-main-logo {
        height: 20px;
        padding: 0;
    }

    #tl-menu {
        padding: 5px;
    }

    .uLine,
    .bLine {
        width: 5vw;
        height: 1px;
        margin-top: 2px;
    }
    

    #tl-menu-dropdown li {
        font-size: .7rem;
        padding: 8px;
    }
    
    /*center adjustment----------------*/
    #center-content {
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 15vh;
        margin-bottom: 15vh;
    }

    h1 {
        font-size: 0.85rem;
    }

    h2 {
        font-size: 0.8rem;
    }

    p, li {
        font-size: 0.8rem;
    }

    body {
        line-height: 1.3;
    }
    
    /*footer adjustment----------------*/
    footer p {
        font-size: .45rem;
    }
    
        #bt-social-icons img {
        height: 20px;
        widows: auto;
    }
    
}


