* {
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
}

html {
    background: #000000;
    color: #aaaaaa;
    font-family: sans-serif;
    font-size: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    width: 100vw;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    height: 100vh;
}

.head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.head > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.head > div > img {
    height: 1rem;
    border-radius: 25%;
}

.copyright {
    font-size: 0.5rem;
}

.topic {
    font-size: 1rem;
    color: darkturquoise;
}

.counter {
    font-size: 1rem;
    color: whitesmoke;
    padding-top: 1rem;
}

.js-counter {
    font-size: 1.5em;
    color: darkturquoise;
}

.reset {
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkturquoise;
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: underline;
}



