<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;900&amp;display=swap');


body {
    /* hinde scrollbar */
    overflow-y: scroll;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */

    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.95);
    color: #e0e0e0;
}

body::-webkit-scrollbar {
    display: none;
    /* WebKit (Chrome, Safari, etc.) */
}


/*-----------body h2 and p elements ----------*/
h2 {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #ff7200;
}

p {
    font-size: 21px;
    font-weight: 300;
    text-align: center;
    margin: 10px;
    padding: 0;
}

/* article */
article {
    display: block;
    margin: 20px;
    padding-top: 80px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
}

#data0 {
    display: block;
    padding-left: 120px;
    padding-right: 120px;
}

#data1 {
    display: block;
    padding-bottom: 60px;
    padding-left: 120px;
    padding-right: 120px;
}

#data2 {
    display: block;
    padding-bottom: 60px;
    padding-left: 120px;
    padding-right: 120px;
}

#data3 {
    display: block;
    padding-bottom: 10px;
    padding-left: 120px;
    padding-right: 10px;
}



.tooltip {
    position: absolute;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
}

.intro {
    width: 100%;
    height: 100vh;
}

.introVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.introTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 50px;
    text-align: center;

    &amp; h2 {
        font-size: 50px;
        margin: 0;
        padding: 0;
    }
}

#influence-container .crypto-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    margin: 10px;
    /* add an underline */
    border-bottom: 1px solid #ff7200;
    border-top: 1rem solid #ff7200;
}

.line-chart {
    width: 100%;
    height: auto;
    overflow: visible;
    font: 10px sans-serif;
    padding-top: 30px;
}

.iframe-container {
    z-index: 10000;
}

#x-axis {
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    padding: 0;
    color: whitesmoke;
}

#y-axis {
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    padding: 0;
    color: whitesmoke;
}

#influence-container .crypto-filters input,
#influence-container .crypto-filters label {
    cursor: pointer;
    font-size: 12px;
}

#influence-container .crypto-filters label {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

#influence-container .crypto-filters input[type="checkbox"] {
    appearance: none;
    position: relative;
    padding-left: 1em;
    display: inline-flex;
}

#influence-container .crypto-filters input[type="checkbox"]:after,
#influence-container .crypto-filters input[type="checkbox"]:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    border-width: 2px;
}

#influence-container .crypto-filters input[type="checkbox"]:before {
    border-color: solid;
    border-style: solid;
}

#influence-container .crypto-filters input[type="checkbox"]:after {
    transition: all 300ms ease;
    opacity: 0;
    transform: translate(2px, -50%) scale(0.75);
    background: currentColor;
}

#influence-container .crypto-filters input[type="checkbox"]:checked:after {
    opacity: 1;
}

#influence-container .crypto-filters .form-section {
    padding: 10px;
    transition: all 300ms ease;
}

#influence-container .crypto-filters .form-section:hover {
    background: #afafaf;
}

#influence-container .crypto-filters .form-section:before {
    content: attr(data-title);
    display: block;
    grid-column: span 2 / span 2;
}

#influence-container .crypto-filters .form-section:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

svg .stacked-area {
    transition: all 120ms ease;
    opacity: 0.9;
}

svg:hover .stacked-area.not-active {
    opacity: 0.2;
}

svg:hover .stacked-area.active {
    opacity: 1;
}


.geo-circle {
    fill: #fff;
    stroke: #000;
    stroke-width: 1.0px;
    fill: red;
    opacity: 0.5;

}


.tooltip-geo {
    position: absolute;
    text-align: left;
    padding: 2px;
    font: 12px sans-serif;
    border: 0px;
    border-radius: 8px;
    pointer-events: none;
    visibility: hidden;
    border-bottom: 1px solid #000;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: #fff;
    color: #000;
    opacity: 0.85;
    box-shadow: 0px 0px 20px #870e0e;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #cccccc;
}

.legend {
    width: max-content;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    gap: 3rem;
}

.filter_inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 20px;
    margin: 10px;
    /* add an underline */
    border-bottom: 1px solid #ff7200;
    border-top: 1rem solid #ff7200;
}

.link {
    fill: none;
    stroke: #000;
    stroke-opacity: .2;
}

.link:hover {
    stroke-opacity: .5;
}

.node {
    fill: #8FB1CC;
    cursor: move;

}

.nodeLabel {
    font-size: 14px;
    text-anchor: middle;
    fill: white;
    font-weight: 700;

}

/* sankey filter  */
#sankey-top30 .filter_inputs .dropdown {
    padding: 10px;
    transition: all 300ms ease;
}

#sankey-top30 .filter_inputs .dropdown:hover {
    background: white;
}

#sankey-top30 .filter_inputs .dropdown:before {
    content: attr(data-title);
    display: block;
    font-size: medium;
    grid-column: span 2 / span 2;
}

.dropdown {
    float: top;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/MUSKDOGE.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    /* Initial opacity, adjust as needed */
    transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
    /* Opacity on hover, adjust as needed */
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 18px;
}

#imagePopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#chart-title {
    text-anchor: middle;
    justify-content: center;
    align-items: center;
    fill: #ffffff;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

#y-title {
    text-anchor: middle;
    fill: white;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

#x-title {
    text-anchor: middle;
    fill: white;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

.bubbles {
    stroke-width: 2px;
    stroke: white;
}

.bubbles:hover {
    stroke: black;
}

#bubble-chart {
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: tomato;
}

.h2-with-margin {
    margin-right: 60px;
}

.button {
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.2s;
    cursor: pointer;
  }

  .button1:hover  {
    background-color: white; 
    color: black; 
    border: 2px solid #04AA6D;
  }
  
  .button1 {
    background-color: #04AA6D;
    color: white;
  }

  /* sankey */
  
  .node rect {
    cursor: move;
    fill-opacity: .9;
    shape-rendering: crispEdges;
  }
  
  .node text {
    pointer-events: none;
    text-shadow: 0 1px 0 #fff;
    font-size: 6px;
    font-weight: bolder;
  }
  
  .link {
    fill: none;
    stroke: #69b3a2;
    stroke-opacity: .2;
  }
  
  .link:hover {
    stroke-opacity: .5;
  }
</pre></body></html>