@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    background: #000;

    font-family: "Quicksand", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    height: 100vh;
    width: 100vw;
}

.top-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    border-bottom: 1px solid #FFF;
    font-size: 2rem;
    color: #FFF;
    padding-left: 1rem;
    padding-right: 1rem;
}

.data-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    color: #FFF;
}

.timer {
    font-size: 16rem;
    font-family: "Quicksand", sans-serif;
}

.record {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-height: 4rem;
    width: 100%;
    overflow: scroll;
}

.record li {

    list-style-type: none;
}

::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

@media screen and (max-height: 350px) {
    .timer {
        font-size: 6rem;
    }
}

@media screen and (max-height: 200px) {
    .timer {
        font-size: 4rem;
    }

    .record {

        max-height: 1.5rem;

    }
}