
/* Styles for EXERCISES */
:root {
    --main-color: #6F7C50;
    --secondary-color: #BAB86C;
    --secondary-light-color: rgb(243, 248, 174);
}
body {
    line-height: 2;
}
header {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* row-gap: 50px; */
    margin-bottom: -10px;
}
.header-item {
    margin: 0 20px;
}
input {
    border: none;
    background: rgb(243, 248, 174);
    box-shadow: 2px 2px 2px olive;
    padding: 5px;
    margin: 2px;
    display: inline-block;
    outline: none;
    transition: all ease 1s;
    /* font-size: 2rem; */
}
input[type="text"] {
    font-size: 1rem;
}
input[type="radio"] {
    box-shadow: none;
}
.radio-text {
    background-color: var(--secondary-color);
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
}
input:focus {
    outline: none;
    background: rgb(217, 223, 145);
}
input:hover {
    background: rgb(217, 223, 145);
}
.check {
    border: none;
    background: rgb(243, 248, 174);
    box-shadow: 5px 5px 2px;
    padding: 15px;
    margin: 2px;
    display: inline-block;
    outline: none;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: olive;
    transition: 1s all ease;
}
.check:hover {
    color:  rgb(243, 248, 174);
    background: olive;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.red {
color: rgb(221, 5, 5);
}
.underline {
text-decoration: underline solid rgb(221, 5, 5);
}
.underline-double {
text-decoration-line: underline;
text-decoration-style: double;
text-decoration-color: rgb(221, 5, 5);
}
.underline-wavy {
text-decoration: underline wavy rgb(221, 5, 5);
}
h3 {
color: var(--main-color);
}

.directions {
font-style: italic;
}
#picture1 img, #picture2 img, #picture3 img, #picture4 img, #picture5 img, #picture6 img, #picture7 img, #picture8 img, #picture9 img, #picture10 img, #picture11 img {
width: 200px;
max-height: 150px;
}
figcaption {
width: 200px;
text-align: center;
}
.invisible {
display: none;
}
body {
font-family:Arial, Helvetica, sans-serif;
}
img {
    width: 200px;
    max-height: 150px;
}
i {
    color: var(--main-color);
    font-size: 2rem;
}
li {
    line-height: 2.5rem;
}
.bcgr-secondary {
    background: var(--secondary-light-color);
    padding: 10px;
    border-radius: 5px;
}