/*  aside tag */
.container-palette {
    margin: 0 0 2rem 0;
    border-radius: 5px 60px;
    border-color: white;
    border-style: solid;
    border-width: 32px 32px 48px 32px;
}

.container-palette h3 {
    font: small-caps 600 2.5rem "Brush Script MT", cursive;
    margin: 1rem 0 3rem 0;
}

/*  TODO list: container with a palette colors | nested lists */
.palette-star-wars { /* flex box */
    display: flex;
    display: -webkit-flex;
    flex-flow: row-reverse wrap;
    list-style: none;
    width: 100%;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
    background-color: white;
}

/*  TODO unordered HTML list w
    with color mockup */
.brushstroke {
    list-style: none;
    position: relative;
    width: 50px;
    height: calc(50px * 16 / 9);
    background-origin: border-box;
    -webkit-background-origin: border-box;
}

/* list items: positioned items */
/* triangle */
.triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.top-left {
    border-left: 10px solid white;
	border-bottom: 10px solid hsla(0,0%,0%,0);
    top: 0;
    left: 0;
}

.top-right {
    border-right: 10px solid white;
	border-bottom: 10px solid hsla(0,0%,0%,0);
    top: 0;
    right: 0px;
}

.bottom-right {
    border-right: 10px solid white;
	border-top: 10px solid hsla(0,0%,0%,0);
    bottom: 0;
    right: 0px;
}

.bottom-left {
    border-left: 10px solid white;
	border-top: 10px solid hsla(0,0%,0%,0);
    left: 0;
    bottom: 0;
}

/* CSS shape */
/* trapezoid */
.trapezoid-small-horizontal-top {
    position: absolute;
	border-top: 5px solid #fff;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	height: 0;
	width: 40px;
}

.position-trapezoid-top {
    top: 0;
    left: 5px;
}

.trapezoid-small-horizontal-bottom {
    position: absolute;
    z-index: 1;
	border-bottom: 5px solid #fff;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	height: 0;
	width: 40px;
}

.position-trapezoid-bottom {
    bottom: 0;
    left: 5px;
}

.trapezoid-small-vertical-right-1 {
    position: absolute;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #fff;
	border-top: 10px solid transparent;
    height: 124px;
	width: 0;
}

.position-trapezoid-right-1 {
    right: 0;
    bottom: 0;
}

.trapezoid-small-vertical-right-2 {
    position: absolute;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #fff;
	border-top: 5px solid transparent;
    height: 40px;
	width: 0;
}

.position-trapezoid-right-2 {
    right: 0;
    bottom: 5px;
}

.trapezoid-small-vertical-left-1 {
    position: absolute;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #fff;
	border-top: 10px solid transparent;
    height: calc(124px - 32px);
	width: 0;
}

.position-trapezoid-left-1 {
    left: 0;
    top: 0;
}

.trapezoid-small-vertical-left-2 {
    position: absolute;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #fff;
	border-top: 10px solid transparent;
    height: calc(124px - 32px);
	width: 0;
}

.position-trapezoid-left-2 {
    left: 0;
    top: 15px;
}

/* circle */
.circle {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    width: 3px;
    height: 3px;
}

.position-circle-top-right {
    top: 5px;
    right: 5px;
}

.position-circle-top-left {
    top: 5px;
    left: 5px;
}

.position-circle-bottom-right {
    bottom: 5px;
    right: 5px;
}

.position-circle-bottom-left {
    bottom: 5px;
    left: 5px;
}

/* rectangle */
.rectangle-v {
    position: absolute;
    background-color: #fff;
    width: 3px;
    height: 30px;
    border-radius: 25%;
}

.position-rectangle-1 {
    top: 15px;
    right: 5px;
}

.position-rectangle-2-right {
    bottom: 15px;
    right: 5px;
}

.position-rectangle-2-left {
    bottom: 15px;
    left: 5px;
}

.rectangle-h {
    position: absolute;
    background-color: #fff;
    height: 3px;
    width: 20px;
    border-radius: 25%;
}

.position-rectangle-3 {
    bottom: 5px;
    right: 20px;
}

.position-rectangle-4 {
    bottom: 5px;
    left: 20px;
}

/* colors */
.color-1 {
    background-color: darkslategray;
} 

.color-2 {
    background-color: #347B98;
}

.color-3 {
    background-color: lightskyblue;
}

.color-4 {
    background-color: #66b032; /* Colors of RYB */
}

.color-6 {
    background-color: peru;
}

.color-5 {
    background-color: #fe2712; /* Colors of RYB */
}

.color-7 {
    background-color: saddlebrown;
}

.color-8 {
    background-color: maroon;
}

/* BREAKPOINTS WITH *//* CSS3 MEDIA QUERIES 
********************************************/
@media only screen and (max-width: 576px){
    .container-palette  {
        box-shadow: none;
        border-radius: 0;
        border: none;
    }

    /* TODO list  contaiern bpalette colors */
    .palette-star-wars {
        justify-content: center;
        width: 270px;
    }   
}
    

