html {
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    display: flex;
    flex-direction: column;
    background-color: #F0F0F0;
}

body > div {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
}

#header{
    display: flex;
    align-items: center;
    background-color: #FFF;
    font-size: 17px;
    height: 60px;
    min-height: 60px;
    justify-content: space-between;
    padding: 0 20px;
    color: #808080;
}

#header .title{
    flex:0.75;
    align-items: center;
    font-size: 20px;
    color: #808080;
    font-weight: 500;
}

#logs{
    flex: 1;
}

.button a{
    margin: 0 15px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    background-color: #2980b9;
    color: #FFF;
}

.button a i{
    margin: 0 10px;
}

