/* **************************** ITEM DESIGN **************************** */
body {
    background-image: radial-gradient(rgb(189, 180, 180), rgb(103, 104, 59));
    background-repeat: no-repeat;
    height: auto;
}

.itemTitle {
    text-align:center;
    color:rgb(204, 156, 25);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 35px;
    letter-spacing: 5px;
    text-shadow: -1px -1px 1px #01010c, 1px -1px 1px #01010c, -1px 1px 1px #01010c, 1px 1px 1px #01010c;
}

.itemSubTitle {
    margin-top: 10px;
    text-align:center;
    font-size: 20px;
    color: rgb(39, 36, 36);    
}

.itemInfo {
    margin-top: 24px;
    background-color: #09092c;
    padding-top: 4px;
    padding-bottom: 4px;
}

.itemInfo__title {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
}

.itemInfo__subtitle {
    margin-top: 5px;
    color: rgb(150, 140, 140);
    font-size: 15px;
    margin: 5px 10px;
}

.itemInfo__example {
    margin-top: 5px;
    color: rgb(84, 143, 66);
    font-size: 15px;
    margin: 0 10px;
}

/* ------------ Image ------------ */
.content-img {
    margin: 20px 0;
    text-align: center;
}

.content-img img {
    border-radius: 15px;
    box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.25);
}
/* ------------ Image ------------ */
/* **************************** ITEM DESIGN **************************** */

/* ------------ Align-Content: Flex-Start ------------ */
.containerAlignContent_Flex-Start {
    height: 120px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.itemAlignContent_Flex-Start {
    width: 20%;
    border: 1px solid black;
    background-color: cadetblue;
}
/* ------------ Align-Content: Flex-Start ------------ */

/* ------------ Align-Content: Flex-End ------------ */
.containerAlignContent_Flex-End {
    height: 120px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
}

.itemAlignContent_Flex-End {
    width: 20%;
    border: 1px solid black;
    background-color: cadetblue;
}
/* ------------ Align-Content: Flex-End ------------ */


/* ------------ Align-Content: Center ------------ */
.containerAlignContent_Center {
    height: 120px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.itemAlignContent_Center {
    width: 20%;
    border: 1px solid black;
    background-color: cadetblue;
}
/* ------------ Align-Content: Center ------------ */

/* ------------ Align-Content: Space-Around ------------ */
.containerAlignContent_Space-Around {
    height: 120px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
}

.itemAlignContent_Space-Around {
    width: 20%;
    border: 1px solid black;
    background-color: cadetblue;
}
/* ------------ Align-Content: Space_Around ------------ */

/* ------------ Align-Content: Space-Between ------------ */
.containerAlignContent_Space-Between {
    height: 120px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.itemAlignContent_Space-Between {
    width: 20%;
    border: 1px solid black;
    background-color: cadetblue;
}
/* ------------ Align-Content: Space_Between ------------ */