:root {
	font-family: sans-serif;
	font-size: 28px;
    background-color: black;
    color: white;
}

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

input[type="number"], button {
    appearance: none;
    background-color: inherit;
    border: none;
    font-size: inherit;
    color: inherit;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 12px;
    height: 100vh;
    
    & > svg {
        /*! flex: 10; */
        max-width: 100%;
    }
    
    & > div {
        /*! flex: 1; */
        max-width: 800px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
}

input[type="range"] {
    accent-color: hsl(330 100 50);
}

button {
    border: solid 2px hsl(330 100 50);
    border-radius: 0.5lh;
    padding: 0.2em 1.4em;
    cursor: pointer;
    
    &:hover {border-color: white;}
    &:active {opacity: 0.6;}
}