:root {
    --text_color: #82858A;
}

@font-face {
    font-family: 'futura_bk_bold';
    src: url('../fonts/Futura Bk Bold.ttf');
}

html, body {
    padding: 0;
    margin: 0;
    font-family: futura_bk_bold;
}

html {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: black;
}

body {
    position: relative;
    display: inline-flex;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background-color: white;
    background-image: url('../img/ION_paper_800px.png');
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    overflow: hidden;
    color: var(--text_color);
}

#svg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

text {
    text-anchor: middle;
    fill: var(--text_color);
}

.temp {
    font-size: 12px;
}

.temp_outline {
    stroke: var(--text_color);
    fill: transparent;
}

.temp_label {
    font-size: 5px;
}

#date {
    font-size: 3.40px;
    text-anchor: start;
}

.line {
    stroke: var(--text_color);
    fill: transparent;
    stroke-width: 0.5;
}