:root {
    --debug-border-color: inherit; 
    --debug-border-size: inherit;
    --debug-border-style: inherit;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

div {
    border: var(--debug-border-size) var(--debug-border-style) var(--debug-border-color);
}

div#main {
    margin: auto;
    height: 95vh;
    width: 95vw;
    display: flex;
    flex-direction: column;
    border: 1px solid #21283a;
}

div#top {
    display: flex;
    flex: 1;
    height: 10vh;
    justify-content: space-between;
    align-items: center;
    background-color:#21283a;
    color: #eee;
    padding: 0 1em;
}

img#logo {
    height: 50px;
}

div#bottom {
    display: flex;
    flex: 9;
    height: 82vh;
}

div#left {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0em 1em;
}

div#fileload_container {
    display: flex;
    flex-direction: column;
}

span.hint {
    font-size: small;
    padding: 0.5em;
    background-color: khaki;
    margin: 0.5em;
}

span#pessoas_inputfilestats {
    margin-bottom: 0.5em;
    font-size: small;
}

div#pessoas_container {
    overflow: auto;
    padding: 1em;
}

div#pessoas_container ul {
    margin: 0;
    padding: 0;
}

div#pessoas_container li {
    list-style: none;
    line-height: 1.8em;
    margin: 0;
    padding: 0;
}

button#sortear_button {
    padding: 0.5em 0;
    font-size: large;
}

@keyframes grow {
    from {
        font-size: medium;
    }
    to {
        font-size: xx-large;
    }
}

.big {
    font-size: xx-large;
    animation: grow 2s;
}