body {
    color: rgb(145, 111, 111);
    font-weight: bold;
}
#panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    flex-wrap: wrap;
}
.elem {
    width: 100px;
    height: 80px;
    /* margin: 10px; */
    border-radius: 3px;
    display: flex;
    background-image: url('../alphabet_images/icons/jigsaw-puzzle-lightblue.png');
    background-size:contain;
    background-repeat: no-repeat;
    text-transform: uppercase;
}
.elem-wrapper {
    width: 100px;
    height: 80px;
    margin: 10px;
}
.elem-text {
    margin-top:25px;
    margin-left: 22px;
    text-align: center;
    font-size: 1.3rem;
    width: 40px;
}
.parent .elem {
    margin: 0;
    margin-right: -26px;
}
.parent {
    width: 400px;
    height: 100px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    background: rgba(251, 251, 252, 0.7);
    border: 1px dashed lightblue;
    border-radius: 3px;
}
.hidden-yes, .hidden-no {
    display: none;
}
.result {
    height: 25px;
}
.parents-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.buttons {
    margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.headings {
    display: flex;
    justify-content: space-between;
    margin: 0 70px;
    flex-wrap: wrap;
}
.emphasize {
    color: red;
    font-size: 3rem;
}
.directions {
    color: rgb(145, 111, 111);
    font-size: 1.3rem;
}
.btn {
    border: 1px lightblue dashed;
    background: white;
    font-size: 1.5rem;
    padding: 5px 25px;
    border-radius: 3px;
    transition: 0.5s;
    color: rgb(145, 111, 111);
    font-weight: bold;
    margin-left: 20px;
    margin-right: 20px;
    min-width: 125px;
    height: 40px;
}
.btn img {
    /* width: 100%; */
    height: 100%;
}
.btn:hover  {
    transform: translate(0, 2px);
    background:  rgb(145, 111, 111);
    color: white;
}
h1 {
    text-align: center;
    margin: 0 auto;
}
.images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.images .picture {
    height: 100px;
    margin: 10px;
    border: 1px lightblue dashed;
}
@media screen and (max-width: 800px) {
    .directions {
        font-size:  1.3rem;
    }
}
@media screen and (max-width: 560px) {
    .directions {
        font-size:  1rem;
    }
    .btn {
        margin-top: 5px;
    }
}
