@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');

body {
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    margin-bottom: 20px;
}

header {
    background: #4a0d9f;
}

#asl-logo {
    width: 60px;
}

.rank-entry {
    border: 2px solid #4a0d9f;
    margin: 8px 0;
    border-radius: 40px;
    background: #faf3ff;
}

.rank-entry.gone {
    border: 2px solid #4a0d9f;
    background: #f7ddff;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

.content-background {
    background: #faf3ff;
}

.clear-fix {
    clear: both;
}

.avatar {
    width: 48px;
    border-radius: 25px;
    border: 2px solid #4a0d9f;
}

.unknown {
    width: 48px;
    height: 48px;
    border-radius: 25px;
    background: #faf3ff;
    display: inline-block;
}

.number {
    width: 60px;
    display: inline-block;
    text-align: center;
}

.small-position {
    font-size: 0.8em;
}

.txt-green {
    color: #00f400;
}

.chart {
    height: 300px;
    background: #faf3ff;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
}

footer {
    min-height: 100px;
    background: #2b0066;
    color: #854baf;
    padding: 20px;
    margin-top: auto;
}

#footer__made {
    font-size: 1em;
    text-align: center;
    color: #aabbcc;
    /*background-color: $ color-black;*/

    span {
        font-family: 'Tangerine', cursive;
        font-size: 2em;
    }

    a {
        color: #aabbcc;
    }
}