@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Taviraj:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "Faune";
    font-weight: 400;
    src: url(assets/faune-regular.woff2), url(assets/faune-regular.woff);
}

@font-face {
    font-family: "Faune";
    font-weight: 400;
    font-style: italic;
    src: url(assets/faune-italic.woff2), url(assets/faune-italic.woff);
}

@font-face {
    font-family: "Faune";
    font-weight: 700;
    font-style: bold;
    src: url(assets/faune-bold.woff2), url(assets/faune-bold.woff);
}

body {
    font-family: "Faune", "Arial";
    font-size: 16px;
    line-height: 1.5;

    background-color: #2a2a2a;
    color: #ffffff;
    margin: 0px 0px 0px 360px;
}

section.options {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background-color: #2a2a2a;

    padding: 40px;
    border-right: 1px solid rgba(255,255,255, 0.1);
}

h1 {
    font-weight: 700;
    font-size: 24px;
}

div.option {
    margin: 20px 0 0 0;
}

div.option-checkbox {
    display: flex; 
    justify-content: space-between;
    algin-items: center;
}

label {
    display: block;
    margin: 0 0 5px 0;
}

label span {
    float: right;
    font-style: italic;
}

input[type="text"] {
    width: 100%;
    background-color: #575757;
    border: none;
    color: #ffffff;
    outline: none;
    padding: 5px 7px 5px 7px;
}

input[type="range"] {
    width: 100%;
}

select {
    width: 100%;
}

textarea.output {
    font-size: 64px;
    width: 100%;
    background: none;
    color: #ffffff;
    border: none;
    outline: none;
    min-height: 100vh;
    padding: 40px;
}

div.colors {
    display: flex;
}

div.colors div {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: 2px solid rgba(255,255,255, 0.25);
    text-align: center;
    background-color: black;
    margin: 5px 10px 0 0;
    text-align: center;
    vertical-align: center;
    transition: border 0.25s;
}

div.colors div.selected {
    border: 2px solid #ffffff;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #575757;
    border-radius: 50%;
    outline: none;
    transition: background-color 0.25s;
}

input[type="checkbox"]:checked {
    background-color: #ffffff;
}