
#header {
    background-color: #1ca4ea;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 55px;
    box-sizing: border-box;
    padding: 0 8px;
}

#back-arrow {
    fill: rgba(255, 255, 255, .75);
    height: 25px;
    width: 25px;
}

#three-bars{
    fill: rgba(255, 255, 255, 1);
    height: 25px;
    width: 25px;
}

#three-bars-btn{
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: .1s;
}

#back-arrow-btn {
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: .1s;
}

#back-arrow-btn:active {
    background-color: rgba(255, 255, 255, .25);
    transition: .1s;
}

#three-bars-btn:active{
    background-color: rgba(255, 255, 255, .25);
    transition: .1s;
}

#reload {
    fill: rgba(255, 255, 255, .75);
    height: 25px;
    width: 25px;
}

#reload-btn-wrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-end;
}

#reload-btn {
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: .1s;
}

#reload-btn:active {
    background-color: rgba(255, 255, 255, .25);
    transition: .1s;
}

#title {
    color: #fff;
    font-size: 22px;
    font-weight: bolder;
    margin-left: 10px;
    text-decoration: none;
    margin-left: 32px;
    user-select: none;
}