:root {
    --color-bg: #03071e;
    --color-primary: #ffba08;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-y: hidden;
    background-color: var(--color-bg)
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.buttons {
    display: flex;
    justify-content: center;
    margin: .5rem;

}

.buttons button {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    margin: 0 .5rem;
    font: inherit;
    color: var(--color-primary);
    /* color: rgb(0, 104, 216); */
    font-weight: 200;
    /* border: none; */
    padding: .75rem;
    font-size: 1.1rem;
}

.buttons button:focus {
    outline: none;
}

.buttons button:active {
    transform: scale(.97);
}

.slider-container {
    /* border: 1px solid white; */
    display: flex;
    align-items: center;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    margin-left: .5rem;
}

.slider-name {
    color: var(--color-primary);
    font-weight: 200;
    font-size: 1.1rem;
    margin: 0 1rem;
}

.slider {
    height: 15px;
    -webkit-appearance: none;
    background: #370617;
    outline: none;
    border-radius: 15px;
    overflow: hidden;
    margin-right: .5rem;
    /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 1); */
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: 4px solid #333;
    box-shadow: -407px 0 0 400px var(--color-primary);
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid red; */
}

.chart {
    margin: 1rem;
    width: 1200px;
    height: 600px;
    /* border: 2px solid green; */
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bar {
    /* width: 7.5px; */
    /* margin: 0 1.125px; */
    background-color: var(--color-primary);
}


.bg-red {
    background-color: red;
}

.bg-green {
    background-color: limegreen;
}