@import url(https://fonts.googleapis.com/css?family=Roboto:300);
* {
    font-family: "Roboto", sans-serif;
}
html,
body {
    height: 100%;
    margin: 0;
    background: burlywood;
}

button {
    border: 0;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
}
button:hover,
button:focus {
    filter: brightness(0.9);
}
button:active {
    filter: brightness(0.8);
}

ul.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    height: 3rem;

    li {
        float: left;
    }
    li a {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        cursor: pointer;
    }
    li a:hover {
        background-color: #111;
    }
    li .home {
        font-size: 2rem;
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        padding: 0;
        text-align: center;
        user-select: none;
    }
    li .material-icons-round {
        padding: 0.75rem;
        user-select: none;
    }
    li .textButton {
        font-size: 2rem;
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        padding: 0;
        text-align: center;
        user-select: none;
    }
    li div {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }
}
