@import url('https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2&family=Roboto&display=swap');
/*
font-family: 'Baloo Tammudu 2', cursive;
font-family: 'Roboto', sans-serif;
*/

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.picking-color {
    cursor: url(../assets/colorpicker.cur), pointer;
}

h1 {
    font-family: 'Baloo Tammudu 2', cursive;
}

/* UTILITY CLASSES */
.flex {
    display: flex;
}

/* LAYOUT */
#fullpage-container {
    width: 100vw;
    height: 100vh;
    background-color: lightblue;

    display: flex;
}

#left-container {
    height: 100vh;
    width: 50%;
    background-color: lightcoral;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#right-container {
    height: 100vh;
    width: 50%;
    background-color: lightgoldenrodyellow;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CANVAS */
canvas {
    border: 1px solid white;
}

/* DROPZONE */
#dropzone {
    padding: 25px;
    width: 320px;
    border: 2px dashed white;

    color: white;
    display: flex;
    justify-content: center;
}

#dropzone.dragover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* BUTTONS */
#download-button {
    width: 320px;
    height: 35px;
    margin-top: 4px;
    background-color: white;
    cursor: pointer;
}

#download-button:hover {
    background-color: lightgray;
}

.button-row {
    margin-top: 20px;
    display: flex;
}

.square-button {
    height: 90px;
    width: 90px;
    margin-right: 20px;
    background-color: white;
    cursor: pointer;
}

.square-button:hover {
    background-color: lightgrey;
}

.square-button.selected {
    background-color: black;
    color: white;
}

/* SINGLE COLOR SETTINGS */
#extra-settings {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

#extra-settings p {
    margin-right: 5px;
}

#current-color {
    width: 40px;
    height: 20px;
    margin-right: 20px;
    border: 1px solid black;
    background-color: white;
}