html {
    height: 100%;
    width: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    margin: 0;
    background-color: #565264;
}

.tcl-picto {
    height: 1.5ch
}

#res {
    padding: 2rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gith-icon {
    text-align: right;
    margin: 2rem 2rem 0 0;
}

.gith-icon img {
    height: 4rem;
}

.load-icon {
    animation: rotate 1s linear infinite;
    height: 5rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}