@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: #202020;
    color: #fff;
    margin:1em;
    font-size: 12pt;
    font-family: 'Roboto', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.description > h3 {
    text-align: center;
}

.description {
    text-align: justify;
}

.total-today-text {
    text-align: center;
    font-size: 16pt;
}

.total-today-text > span {
    padding-left: 5px;
}

.description > p {
    text-indent: 0.5cm;
}

.start {
    cursor: pointer;
    min-width: 100px;
    font-size: 14pt;
    border: 2px solid #3498db;
    padding: 1em;
    color: #fff;
    background-color: transparent;
    outline: 0;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.start:hover {
    background-color: #3498db;
}

.start-wrapper {
    width: 100%;
    display: flex;
}