* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#app {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#colors > div, #input {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name {
    font-size: 24px;
}

.value {
    font-size: 16px;
    text-transform: uppercase;
}

.light {
    color: black;
}

.dark {
    color: white;
}

#hex {
    font-size: 32px;
}

