*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color-scheme: dark light;
    font-family: cursive;
}

body{
    overflow: hidden;
}

.container{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border: 1px solid;
}

.container .bars{
    display: flex;
    flex-direction: row;
    gap: 10px;
    transform: rotate(180deg);
    width: 100%;
    height: 90vh;
    justify-content: center;
    border: 1px solid;
    padding-inline: 10px;
}

.bar{
    width: 20px;
    height: calc(var(--hight) * 8vh);
    background-color: aqua;
}

.settings{
    box-sizing: border-box;
    height: 10vh;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

.settings > button{
    outline: none;
    border: none;
    padding: .8rem .9rem;
    border-radius: 10px;
    background-color: white;
    color: darkgreen;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    &:hover{
        color: rgb(6, 179, 6); 
        transition: color .3s linear;
    }
}

.compression{
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: white;
    padding: 5px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #ec407a;
    text-transform: uppercase;
    font-size: 1.2rem;
}