* {
    margin: 0;
    padding: 0;
}

:root {
    --angle: 300deg;
}


html {
    scroll-behavior: smooth;
}

#video-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh + 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    background-color: black;
    z-index: 9999;
}

#video-loader img {
    height: 80px;
}

#video-loader video {
    height: 80px;
}

html {
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;

    &:before,
    &:after {
        box-sizing: border-box;
    }
}

body {
    overflow-x: hidden;
    width: 100vw;
    background-color: black;
    color: white;
    transition-duration: 0.2s;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.star-rating {
    display: flex;
    justify-content: center;
    direction: rtl;
    /* This reverses the order of the stars */
}

.star-rating input {
    display: none;
    /* Hide the radio buttons */
}

.star-rating label {
    font-size: 2em;
    /* Star size */
    color: grey;
    /* Default star color */
    cursor: pointer;
}

.star-rating input:checked~label {
    color: gold;
    /* Gold color for selected stars */
}

.star-rating label:hover,
.star-rating label:hover~label {
    color: gold;
    /* Change color on hover */
}

input {
    color: white;
}

button {
    cursor: pointer;
}

::-webkit-scrollbar {
    display: none;
}

::selection {
    background-color: rgba(0, 255, 255, 0.263);
    color: black;
}

a {
    color: white;
    text-decoration: none;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 40px;
    padding: 10px 0px;
    background-color: #0f0f0fba;
    backdrop-filter: blur(7px);
    border-radius: 40px;
    top: 33vh;
    left: 10px;
    margin-left: -60px;
    transition-duration: 0.3s;
    z-index: 100;
    box-shadow: 0px 0px 10px black, 0px 0px 10px black;
}


#indicator {
    height: 35px;
    /* Set the height of the indicator slightly larger than buttons */
    width: 35px;
    /* Set the width to match */
    border-radius: 50%;
    /* Ensure circular shape */
    position: absolute;
    transition-duration: 0.3s;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.501), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    /* Glow effect */
}



.group {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.236);
}


.buttons button {
    margin-top: 20px;
    background-color: transparent;
    border: none;
    width: 40px;
    /* Uniform button size */
    height: 40px;
    /* Ensure consistent height */
    padding: 0;
    display: block;
    position: relative;
}


#darkButton {
    margin-top: 0;
}


#defaultButton {
    margin-top: 12px;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#defaultButton img {
    margin: auto;
}

/* Apply inversion only to specific elements */
/* General styles for light mode */
body {
    background-color: white;
    /* Light mode background */
    color: black;
    /* Default text color in light mode */
}

.dark-mode #download_btn {
    color: white;
    border: 1px solid #fff;
}

.dark-mode #download_btn:hover {
    color: rgb(0, 0, 0);
    background-color: white;
    border: 1px solid #fff;
}

.light-mode #download_btn:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border: 1px solid #000000;
}

/* Dark mode styles */
body.dark-mode {
    background-color: black;
    /* Dark mode background */
    color: white;
    /* Default text color in dark mode */
}

/* Specific footer styles for light mode */
footer {
    background-color: white;
    color: black;
    padding: 20px;
    margin-top: -100px;
}

/* Dark mode footer styling */
body.dark-mode footer {
    background-color: black;
    /* Dark mode footer background */
    color: white;
    /* Dark mode footer text color */
}

/* Footer heading styles for light mode */
footer h3 {
    margin: 0;
    /* Remove default margin */
    color: black;
    /* Light mode h3 text color */
}

/* Dark mode heading styles */
body.dark-mode footer h3 {
    color: white;
    /* Ensure h3 text is white in dark mode */
}

body.light-mode footer h3 {
    color: black;
}

#moon,
#sun {
    filter: invert(1);
}

#default {
    filter: invert(1);
    margin-top: 20px;
}


.glow {
    box-shadow: 0 0 10px 5px rgba(255, 255, 0, 0.7);
    /* Customize glow style */
    transition: box-shadow 0.3s ease-in-out;
    /* Smooth transition */
}



.copy {
    height: 20px;
    width: 20px;
}

#copy {
    font-size: 20px;
    color: white;
}

.top {
    background-color: #3333337b;
    padding: 10px 7px 10px 7px;
    border: none;
    border-radius: 10px;
    position: fixed;
    bottom: 80px;
    right: 25px;
    backdrop-filter: blur(7px);
    box-shadow: 5px 5px 10px black;
    z-index: 50;
}

#top {
    opacity: 0;
    transition-duration: 0.3s;
}

.top img {
    height: 20px;
}

#navbar {
    width: 100vw;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 104;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Space between logo and button */
    border-bottom: 1px solid rgba(255, 255, 255, 0.077);
    background-color: #0f0f0fba;
    backdrop-filter: blur(7px);
    transition-duration: 0.3s;
    padding: 0 20px;
    /* Padding for left and right spacing */
}

/* Center the button in the navbar */
.navbarButton {
    background-color: rgba(162, 162, 162, 0.203);
    height: 40px;
    width: min-content;
    color: #ffffff;
    font-size: 17px;
    border: none;
    border-radius: 7px;
    padding: 0px 30px 0px 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    right: 65px;
    top: 10px;
    z-index: 104;
}

#bug-report-button {
    height: 40px;
    width: min-content;
    border-radius: 7px !important;
    position: absolute;
    top: 10px;
    right: 200px;
    font-size: 0.8rem;
}

/* Ensure the button's anchor tag is styled correctly */
.navbarButton a {
    color: white;
    text-decoration: none;
}

/* Center all items in the navbar */
#navbar {
    justify-content: center;
    /* Center all items in the navbar */
}

.navbarButton a {
    color: white;
    text-decoration: none;
}

/* To avoid overlap, use flex properties properly for the logo and button */
.logo {
    position: absolute;
    left: 2px;
    /* Align the logo on the left */
}

.goBack {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    background-color: #d0d0d032;
    backdrop-filter: blur(7px);
    color: rgb(105, 105, 105);
    border: none;
    border-radius: 7px;
    box-shadow: 0 0 5px black;
    cursor: pointer;
}

@media (max-width: 768px) {
    #navbar {
        flex-direction: column;
        height: 60px;
    }
}

#current {
    background-color: rgba(125, 125, 125, 0.192);
}

table {
    margin-top: 0px;
    width: 100%;
}

table,
th,
td {
    border: none;
}

th,
td {
    padding: 20px;
    text-align: center;
}

tr {
    background-color: #31313100;
    transition-duration: 0.2s;
}

tr:hover {
    background-color: rgba(59, 59, 59, 0.527);
}

.logo {
    position: absolute;
    height: 40px;
    margin: 10px;
    transition-duration: 0s;
}

#glow {
    top: -20px;
    left: -17px;
    height: 80px;
    z-index: -10;
    opacity: 0;
    filter: brightness(1.7);
    height: 78px;
}

#glow:hover {
    opacity: 1;
}

#normal:hover {
    z-index: -105;
}

.burger {
    background-color: rgba(73, 89, 103, 0);
    border: none;
    position: fixed;
    top: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    z-index: 120;
    transition-duration: 0.5s;
}

#cross {
    z-index: 250;
    display: none;
}

#burger {
    z-index: 250;
}

#lines {
    z-index: 200;
}

.line {
    height: 2px;
    width: 35px;
    background-color: rgba(255, 255, 255, 0.821);
    margin-top: 10px;
    transform-origin: 100%;
    transition-duration: 0.2s;
}

#l1 {
    margin-top: 5px;
}

.plane {
    height: calc(110vh - 60px);
    width: calc(100vw - 60px);
    background-color: #0f0f0fba;
    backdrop-filter: blur(7px);
    position: fixed;
    z-index: 103;
    right: -100vw;
    top: 60px;
    transition-duration: 0.2s;
    overflow-y: scroll;
    max-width: 400px;
    box-shadow: 0px 0px 10px black;
    font-size: 1.2rem;
    padding-bottom: 140px;
}

.preview {
    margin-left: 10%;
    width: 45vw;
    border-radius: 7px;
    box-shadow: 5px -3px 10px rgb(0, 0, 0);
    transition-duration: 0.4s;
}

.down {
    transform: translateY(-40%) translateX(-10%);
}

.light-mode .develop_theme{
    filter:invert(1) hue-rotate(180deg);
    box-shadow: 5px -3px 10px rgb(255, 255, 255);
}

.heading {
    font-size: xxx-large;
    margin: 20px;
}

.subheading {
    font-size: xx-large;
    margin: 20px;
    margin-top: 50px;
}

.text {
    width: 35vw;
    word-wrap: break-word;
    margin: 20px;
    margin-top: 40px;
    font-size: x-large;
}

.top_dataverse {
    display: flex;
}

#data {
    background: linear-gradient(to right, goldenrod, rgb(0, 141, 141));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: hue;
    animation-duration: 1.5s;
    animation-delay: 3s;
    animation-timing-function: linear;
}

@keyframes hue {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

#download {
    padding-top: 90px;
    height: calc(100vh - 290px);
    display: flex;
}

#map {
    width: 45vw;
    margin-left: 80px;
    margin-right: 60px;
    height: 70vh;
    transition: 0.5s ease;
    filter: invert(1) hue-rotate(180deg) brightness(1.5);
    border-radius: 7px;
}

#aeroplane {
    position: absolute;
    z-index: 410;
    height: 20px;
    rotate: 45deg;
    animation-name: fly;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.direction {
    position: absolute;
    z-index: 410;
    top: 50%;
    left: 50%;
    width: 110vh;
    height: 20px;
    transform: translate(-50%, -50%) rotate(var(--angle));
}

/*=====================hiding map watermark=================*/
.leaflet-control-attribution {
    display: none !important;
}

@keyframes fly {
    0% {
        margin-left: 0vw;
    }

    90% {
        margin-left: 110vh;
    }

    100% {
        margin-left: 110vh;
    }
}

.right {
    margin-top: 80px;
}

.top_dataverse p {
    font-size: xxx-large;
}

#intro_text {
    font-size: x-large;
    width: 40vw;
    word-wrap: break-word;
    margin-top: 40px;
    margin-bottom: 40px;
}

#download_btn {
    background-color: #00000000;
    border: 1px solid black;
    color: black;
    font-size: large;
    transition-duration: 0.3s;
    padding: 10px 20px 10px 20px;
    z-index: 100;
    border-radius: 5px;
}

.scroll_icon {
    position: fixed;
    bottom: 25px;
    left: 50vw;
    transform: translate(-50%);
    font-size: x-small;
    transition-duration: 0.3s;
}

.shadow {
    height: 20px;
    width: 180px;
    background-image: linear-gradient(115deg, #00000000, #000000d4, #00000000);
    position: absolute;
    margin-top: -20px;
    animation-name: wave;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes wave {
    0% {
        margin-left: -180px;
    }

    100% {
        margin-left: 7rem;
    }
}

#about {
    z-index: -10;
    padding-top: 150px;
    margin-top: 250px;
    display: flex;
    padding-bottom: 0;
    border-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), #FDE725, #7AD151, #22A884, #2A788E, #414487, #440154,rgba(0, 0, 0, 0)) 1;
    border-width: 2px;
    border-style: solid;
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
    padding-bottom: 150px;
}

#charts {
    padding-top: 0;
    margin-top: 30px;
    margin-bottom: 120px;
    margin-left: -30px;
    display: flex;
    flex-direction: column;
    border-image: linear-gradient(black, black) 1;
    border-width: 2px;
    border-style: solid;
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
}

#charts p {
    margin-left: 20px;
    width: calc(100vw - 40px);
}

.examples {
    border-radius: 10px 0px 0px 10px;
    margin-left: 0%;
    width: 100vw;
    display: flex;
    overflow-x: scroll;
    background-color: #16161600;
    margin-left: 0px;
}

.examples img {
    height: 35vh;
    margin: 20px;
    box-shadow: 5px -3px 10px rgb(0, 0, 0);
    border-radius: 3px;
}

.scroll_animate {
    background-color: rgba(255, 255, 255, 0);
    margin-bottom: 30px;
    height: 4px;
    width: 7px;
}

#finance {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    border-image: linear-gradient(rgba(0, 0, 0, 0),#440154, #A31E99, #EC7535, #F2F224, rgba(0, 0, 0, 0)) 1;
    border-width: 2px;
    border-style: solid;
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
    margin-top: -180px;
}

#develop {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    border-image: linear-gradient(rgba(0, 0, 0, 0), #F5E020, #C5BD5B, #37B89D, #0C86D4, #2841B2, rgba(0, 0, 0, 0)) 1;
    border-width: 2px;
    border-style: solid;
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none;
}


.section {
    z-index: 1;
    transform: translateX(0);
}

.section {
    position: relative;
    transform: translateY(-100px);
    transition: .5s all ease;
}

.section {
    width: calc(100vw - 60px);
    margin-left: 30px;
    padding-left: 30px;
}

.circle {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #31c356;
    margin-top: 7px;
    margin-left: 3px;
}

#red {
    background-color: rgb(246, 62, 62);
}

#yellow {
    background-color: rgb(230, 194, 102);
}

#technologies {
    display: flex;
    flex-direction: row;
    width: calc(35vw - 0px);
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.323);
    border-bottom:none;
}

#technologies p {
    font-size: large;
    margin-left: 10px;
}

.tags {
    border-radius: 0px 0px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.323);
    padding: 0px;
    display: flex;
    width: 35vw;
    margin: 20px;
    margin-top: -1px;
    justify-content: center;
    flex-wrap: wrap;
}

.tags p {
    margin: 5px;
    font-family: "Inconsolata", monospace;
    font-weight: 400;
}

#htmltag {
    background: linear-gradient(to right, #E44D26, #f1d329);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#csstag {
    background: linear-gradient(to right, #264de4, rgb(0, 195, 255));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#jstag {
    background: linear-gradient(to right, #f0db4f, #5e8d00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#exceltag {
    background: linear-gradient(to right, #008120, #42ea00, #15672a);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pythontag {
    background: linear-gradient(to right, rgb(0, 149, 255), yellow);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#mysqltag {
    background: linear-gradient(to right, teal, orange);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#numpytag {
    background: linear-gradient(to right, rgb(77, 171, 207), rgb(77, 119, 207));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pandastag {
    background: linear-gradient(to right, #150458, #FFCA00, #E70488);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#matplotlibtag {
    background: linear-gradient(to right, #0b4a72,
            #71dbc4, #a3f5a0, #ffd95c, #fe9f5d, #dfff73, #728bc5);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#netlifytag {
    background: linear-gradient(to right, teal, cyan, teal);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#github {
    height: 25px;
    filter: invert(1);
    transition-duration: 0.3s;
}

#contribute {
    margin-left: 50%;
    transform: translate(-50%);
    display: flex;
    cursor: pointer;
    background-color: #00000000;
    border: 1px solid white;
    color: white;
    font-size: large;
    transition-duration: 0.3s;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    z-index: 100;
}

#contribute:hover {
    background-color: white;
    color: black;
}

#contribute:hover #github {
    filter: invert(0);
}

#contribute p {
    margin-right: 10px;
    margin-top: 5px;
}

footer {
    display: flex;
    flex-direction: row-reverse;
    padding-left: 10vw;
    padding-right: 10vw;
    background-color: rgb(0, 0, 0);
    /* Semi-transparent black for dark mode */
    color: silver;
    /* Silver text for good contrast */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition effect */
    justify-content: space-between;
    /* Ensures even spacing between elements */
    align-items: center;
    /* Vertically centers the elements */
}

footer a {
    color: silver;
    /* Silver links */
    transition: color 0.3s;
    /* Smooth transition for links */
}

footer a:hover {
    color: white;
    /* Change link color on hover */
}

footer input[type="text"],
footer input[type="email"],
footer textarea[name="Message"],
footer input[type="submit"] {
    backdrop-filter: blur(50px);
    box-shadow: 0 0 10px black;
    margin: 10px 0;
    padding: 10px;
    width: 95%;
    border-radius: 5px;
    border: 1px solid rgba(126, 126, 126, 0.382);
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

textarea {
    resize: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

footer input[type="submit"] {
    background-color: silver;
    /* Silver background for the submit button */
    color: black;
    /* Black text for visibility */
    cursor: pointer;
    /* Pointer cursor for button */
}

footer input[type="submit"]:hover {
    background-color: white;
    /* White background on hover */
    color: black;
    /* Keep black text on hover */
}


#last_link {
    margin-top: 16px;
    margin-left: 60px;
}

/* Form styling */
form {
    background-color: #4c4c4c2a;
    backdrop-filter: blur(20px);
    width: 30vw;
    margin-left: -5vw;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px black;
    transition: transform 0.3s ease-in-out;
}


/* Input field styling */
input {
    background-color: #76767639;
    width: 85%;
    height: 35px;
    margin-top: 20px;
    border-radius: 5px;
    padding: 5px 10px;
    transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
}

/* Send button styling */
#send {
    display: block;
    margin: 20px auto;
    /* Center the button horizontally */
    width: min-content;
    background-color: rgba(0, 123, 121, 0.364);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.873);
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Send button hover effect */
#send:hover {
    color: black;
    background-color: rgba(0, 240, 236, 0.867);
    box-shadow: 0px 0px 10px cyan;
}

.tooltip {
    display: flex;
    align-items: center;
    position: relative;
  }
  
   /* Tooltip text  */
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: rgba(255, 255, 255, 0.873);
    color: black;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    left: 70%;
    margin-left: -100px; 
    top: 48%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 11px;
  }
    
  /* Show the tooltip on hover */
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

.contact {
    width: 40vw;
}

.end-logo {
    position: absolute;
    height: 40px;
    margin-top: 13px;
}

.name {
    margin-left: 40px;
    display: flex;
}

.design_line {
    height: 1px;
    width: 50vw;
    margin-left: calc(50vw + 15px);
    transform: translate(-50%);
    margin-bottom: 20px;
    margin-top: 30px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(255, 255, 255), rgba(0, 0, 0, 0));
}

.links {
    font-weight: 100;
    background-color: #000000;
    height: auto;
    line-height: 22px;
    font-size: 13px;
    text-align: center;
    width: 80vw;
    margin-left: 50vw;
    transform: translate(-50%);
    color: rgb(160, 160, 160);
    padding-bottom: 20px;
}

.links a {
    color: rgb(238, 238, 238);
}

.links h3 {
    color: white;
}

.links h4 {
    color: white;
}

.end_line {
    width: 80vw;
    margin-bottom: 10px;
    margin-left: 50%;
    transform: translate(-50%);
    height: 0.1px;
    background-color: rgba(255, 255, 255, 0.433);
}

.small {
    margin-top: 20px;
    display: flex;
    font-size: large;
    justify-content: space-around;
}

.link_class a {
    margin-left: 7px;
    line-height: 2.5rem;
    vertical-align: bottom;
    padding-bottom: 0;
    margin-top: -2px;
    z-index: 10;
    border-bottom: 0px solid rgba(255, 255, 255, 0);
    transition-duration: 0.3s;
    border-left: 1px solid rgb(74, 74, 74);
    padding-left: 15px;
    color: rgb(192, 192, 192);
}

.link_class p {
    margin-bottom: 10px;
    margin-top: 10px;
}

.small i {
    margin-top: 20px;
    z-index: 10;
    border-bottom: 0px solid rgba(255, 255, 255, 0);
    transition-duration: 0.3s;
}

.small a {
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.small a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.433);
}

.link_class {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-icon {
    display: none;
    width: 26px;
    /* Adjust the size as needed */
    height: 26px;
}


#versions{
    width: 50vw;
    margin-top: 0px;
    border: 2px solid rgba(128, 128, 128, 0.352);
    margin-left: auto;
    margin-right: auto;
}
#versions td{
    padding: 10px;
    border: 1px solid rgba(128, 128, 128, 0.352);
    text-align: justify;
}
#versions th{
    padding: 10px;
    border: 1px solid rgba(128, 128, 128, 0.352);
}
.highlight {
        font-weight: bold;
        color: #ff4500;
}

/*===========================RESPONSIVE===================================*/
@media screen and (max-width: 660px) {
    .navbarButton {
        padding: 10px;
        border-radius: 50%;
    }

    .button-text {
        display: none;
        /* Hide the text for smaller screens */
    }

    .user-icon {
        display: inline-block;
        /* Show the image for smaller screens */
    }

    .plane {
        max-width: 600px;
    }

    .right {
        margin-top: 0px;
    }

    #download {
        margin-top: 80px;
        padding-top: 0px;
        height: fit-content;
        flex-direction: column-reverse;
    }

    #map {
        margin-left: 20px;
        width: calc(100vw - 40px);
        height: 35vh;
        margin-top: 0px;
    }

    .top_dataverse {
        margin-left: 30px;
    }

    .top_dataverse p {
        font-size: xx-large;
    }

    #intro_text {
        font-size: medium;
        width: calc(100vw - 60px);
        margin-left: 30px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    #download_btn {
        position: absolute;
        margin-top: calc(35vh + 20px);
        left: 50%;
        transform: translate(-50%);
        color: #333;
    }


    #about {
        padding-top: 150px;
        margin-top: 150px;
        flex-direction: column;
    }

    #finance {
        flex-direction: column-reverse;
    }

    #develop {
        margin-top: 0;
        flex-direction: column;
    }

    .section {
        width: calc(100% - 80px);
    }

    #examples {
        margin-top: 30px;
    }

    #charts {
        flex-direction: column;
        width: calc(100%);
        margin-bottom: 40px;
    }

    #charts p {
        margin-left: 20px;
        width: calc(100vw - 40px);
    }

    .examples img {
        height: 25vh;
    }

    .preview {
        margin-top: 20px;
        width: 70vw;
    }

    .subheading {
        margin: 0;
        margin-top: 20px;
    }

    .text {
        margin: 0;
        margin-top: 20px;
        width: 100%;
    }

    footer {
        flex-direction: column;
    }

    .contact {
        margin-left: -10vw;
        margin-top: 20px;
    }

    form {
        margin-top: 40px;
        width: calc(90vw - 20px);
        margin-left: 0vw;
    }

    input {
        width: 95%;
    }

    .heading {
        font-size: x-large;
        margin: 0;
    }

    .subheading {
        font-size: larger;
    }

    #technologies {
        font-size: large;
        width: calc(75vw - 0px);
    }

    .text {
        font-size: medium;
    }

    .tags {
        margin-left: 0;
        font-size: medium;
        width: 75vw;
    }

    #contribute {
        margin-top: 20px;
        transform: translate(-55%);
    }

    .end-logo {
        height: 30px;
        margin-left: 20px;
    }

    .small {
        flex-direction: column;
        font-size: medium;
    }

    .left_links {
        width: 80vw;
    }

    .name {
        margin-left: calc(10vw - 20px);
    }
}

@media screen and (max-width: 370px) {
    .links {
        text-align: left;
    }
}

.scrollBar {
    position: fixed;
    z-index: 90;
    top: 60px;
    left: 0;
    height: 1.9px;
    box-shadow: 0px 0px 5px goldenrod;
    width: 0vw;
    background: rgb(218, 165, 32);
    transition: width 200ms linear;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.41);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85vw;
    max-width: 300px;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0);
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

#modal-message {
    width: 400px;
    word-wrap: break-word;
}

#modal-buttons {
    display: flex;
    justify-content: center;
}

.modal button {
    margin: 20px;
    background-color: #efefefeb;
    border-radius: 3px;
    border: 1px solid white;
    padding: 5px 20px 5px 20px;
    font-size: 0.9rem;
}

#close-modal {
    color: white;
    background-color: #00000000;
}

#codeOfconduct {
    font-family: 'Times New Roman', Times, serif;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.6;
}

#codeOfconduct h1 {
    text-align: center;
    font-size: 2em;
    padding-top: 40px;
    margin-bottom: 40px;
}

#codeOfconduct h2 {
    background: linear-gradient(to bottom, rgba(143, 143, 143, 0.8), #8f8f8f);
    ;
    text-align: center;
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 10px;
}

#codeOfconduct p {
    font-size: 1.1em;
}

#codeOfconduct ul {
    padding-left: 20px;
}

#codeOfconduct ul li {
    margin-bottom: 10px;
}

#codeOfconduct a {
    color: #1a73e8;
    text-decoration: none;
}

#codeOfconduct a:hover {
    text-decoration: underline;
}
