/* register font from /assets/font.ttf */
@font-face {
    font-family: 'Evolution';
    src: url('/assets/font.ttf') format('truetype');
}

body {
    background-color: transparent;
}

img {
    width: 15px;
    height: 15px;
}

h1 {
    color: white;
    font-family: evolution, sans-serif;
}

.faded {
    /* alpha of 0.5 */
    opacity: 0.5;
}

.box {
    background-color: rgba(46, 46, 46, 0.5);
    color: #FFF;
    padding: 4px;
    border-radius: 5px;
    box-shadow: 0 0 10px #000;
    margin: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: -5px;
    /* size to children */
    display: inline-block;
}

.shell {
    position: absolute;
    display: inline-block;
}

/* horizontally align items with legacy support */
.seperator {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seperator-vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

a {
    color: #FFF;
    font-family: evolution, sans-serif;
    font-size: 10px;
    margin-left: 5px;
}

.progressbar-bg {
    background-color: #444;
    border-radius: 5px;
    height: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
    margin-left: 10px;
}

.progressbar-fg {
    border-radius: 5px;
    height: 85%;
    width: 10px;
    padding: 0px;
    margin: 0px;
}

* {
    /* font shadow */
    text-shadow: 1px 1px 1px rgb(0,0,0,0.1);
}