@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&family=Archivo:ital,wdth,wght@0,62..125,100..900;1,62..125,100..900&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=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..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;
    src: url(assets/faune-bold.woff2), url(assets/faune-bold.woff);
}

body {
    background-color: black;
    font-family: "Faune", Arial;
    color: white;

    margin: 40px 40px 40px 280px;
}

section.panel {

    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    border-right: 1px solid #ffffff7f;
    padding: 40px;
}

section.board-container {

    position: fixed;
    top: 0;
    left: 280px;
    height: 100vh;
    width: calc(100% - 280px);
}

h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
}

div.option {
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

div.option-checkbox {
    display: flex;
    gap: 8px;
    align-content: center;
    flex-direction: row;
    width: 100%;
}

input[type="text"] {
    width: 100%;
    padding: 5px 7px 5px 7px;
    /*outline: none;*/
}

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

textarea.board {
    font-size: 100px;
    width: 100%;
    background: none;
    color: white;
    border: none;
    outline: none;
    padding: 40px;
    min-height: 100vh;
}

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

div.colors {
    display: flex;
    width: 100%;
    gap: 8px;
}

div.colors div {
    width: 36px;
    height: 36px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    padding: 0;
    border: 1px solid rgb(124, 124, 124);
    transition: border 0.25s;
}

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

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

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

div.option button {
    height: 32px;
}

div.divider {
    height: 1px;
    background-color: rgb(104, 104, 104);
    margin: 42px 0;    
}