html {
    margin: 0;

    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;

    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}



.color_div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    height: max-content;
}

.color_rgb_hex {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.color_output_div {
    width: 8vw;
    height: 10vh;;
    margin: auto;
}

.color_out_label {
    margin-bottom: 0;
}

.color_types_out {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.complementaries_panel {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    gap: 1vw;

    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

.complementary_div {
    width: 20px;
    height: 20px;

    max-width: 20px;
    max-height: 20px;

    border: black solid 2px;
}

.font_example {
    font-family: 'Arial'
}

@media (max-width: 600px) {
    .style_button_bar {
        width: 100%;
        height: max-content;
    
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;

        margin: auto;
    }

    .font_div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .results_div {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .canvas_div {
        margin: auto;
    
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .gradient_canvas {
        width: 100%;
    }

    .shade_canvas {
        width: 60vw;
        height: 60vw;
    }
}


@media (min-width: 600px) {
    .style_button_bar {
        height: max-content;
    
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;

        margin: auto;
    }

    .font_div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .results_div {
        margin: auto;
        width: 100%;
    
        display: flex;
        justify-content: space-evenly;
    }

    .comp_colors {
        max-width: 25vw;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .canvas_div {
        margin: auto;
        width: 100%;
    
        display: flex;
        justify-content: space-between;
    }

    .gradient_canvas {
        width: 60vw;
    }

    .shade_canvas {
        width: 20vw;
        height: 20vw;
    }
}
