/** @format */

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.5px;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    background-color: #ffffff;
}

body > img {
    height: 80vh;
    max-height: 80vw;
    aspect-ratio: 1;
}

body > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

body input[type="range"] {
    width: 50vh;
    max-width: 50vw;
}

body > div > p {
    font-weight: 700;
    color: #282828ff;
}
