body{
    background-image: linear-gradient(to bottom, rgb(174, 174, 186), rgb(0, 0, 0));
}

.navbar{
    position: fixed;
    box-shadow: 0px 0px 10px gray;
    width: 100%;
    background-color: rgb(229, 235, 108);
    text-align: center;
}

.navbar ul{
    width: 100%;
    display: flex;
    list-style: none;
}

.navbar ul li{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 5%;
    width: 20%;
    margin: 1%;
    transition-duration: 200ms;
    transition-timing-function: ease-out;
}

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

#title{
    font-size: 140%;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: maroon;
}

#timer{
    display: inline-block;
}
.container{
    max-width: 100vw;
    height: 100vh;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px;
}

.barsContainer{
    display: flex;
    flex-direction: row;
}

.bar{
    transition: height 0.1s ease-in-out;
    width: 30px;
    border: 1px solid black;
    margin: 0 2px;
}

.sortBtn{
    background-color: rgb(0, 0, 38);
    padding: 5%;
    margin: 1%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
}

.btnContainer{
    display: flex;
    position: absolute;
    bottom: 3%;
}

.btn{
    color: white;
    font-size: 80%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 5%;
    margin: 1%;
    background-color: black;
    transition-duration: 100ms;
    transition-timing-function: ease-in-out;
}

.btn:hover{
    background-color: gray;
}