@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #161823;
    color: #ECEEF6;
    overflow-x: hidden;
}

.lead, .card-text {
    color: #ECEEF6;
    text-align: justify;
}

.card {
    background-color: #161823;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.5);
    /*padding: 80px;*/
    padding:5em;
    margin: 20px;
    border-radius: 15px;
}

.display-3, .card-title {
    font-weight: bold;
    color: #ECEEF6;
}

.card:hover {
    transform: scale(1.005);
    transition: transform .05s;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #161823; 
}
    
::-webkit-scrollbar-thumb {
    background: #888; 
}

::-webkit-scrollbar-thumb:hover {
    background: #C3E88D; 
}

body {
    background: linear-gradient(90deg, #495070, #292D3E);
}

.card {
    border-radius: 15px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #161823, #A7DC5A, #161823);
    margin: 20px 0;
}

.hrBlank {
    border: 0;
    height: 1px;
    margin: 20px 0;
}

.header-title {
    font-size: 4.5em;
    font-weight: bold;
    color: #ECEEF6;
    padding-top: 20px;
    padding-bottom: 10px;
}

.header-subtitle {
    font-size: 1.5em;
    color: #ECEEF6;
    padding-bottom: 20px;
}

.jumbotron {
    background-color: #161823;
}

.jumbotron {
    position: relative;
    background-color: transparent;
}

.jumbotron::before {
    ...
    background-color: rgba(0, 0, 0, 0.4);
    ...
}

.jumbotron::before {
    ...
    filter: blur(5px);
    ...
}

.jumbotron h1, .jumbotron p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.jumbotron::before {
    ...
    background-attachment: fixed;
    ...
}

.card:first-of-type {
    /* Box shadow */
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);

    /* Rounded corners */
    border-radius: 15px;

    /* Spacing */
    margin-top: 20px;
}

.jumbotron::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('banner_image.png');
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
}

.jumbotron {
    position: relative;
    /* ... other styles ... */
}

#logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width:275px;  /* adjust as needed */
    height: auto;
    
}

.card-text {
    font-size: 20px;
}

@media (max-width: 768px) {
    .card {
        padding: 2em;
    }
    .header-title {
        font-size: 2em;
    }
    .header-subtitle {
        font-size: 1em;
    }
    #logo {
        width: 100px;
    }
    .card-text {
        font-size: 16px;
    }
    .display-3, .card-title {
        font-size: 26px;
    }
    .js-plotly-plot .plotly .svg-container {
        height: 300px !important;
    }
    .js-plotly-plot .plotly text {
        font-size: 10px !important;
    }
    .graph {
        margin:-42px !important;
        margin-bottom:0px !important;
    }

}

