.dictionary{
    height: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(80,80,80,0.05);
}
.dictionary_title{
    font-family:'Times New Roman';
}
.dictionary_terms{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.dictionary_item{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 200px;
}
.dictionary_item_term{
    font-size: 20px;
    font-weight: 600;
    font-family:'Times New Roman';
    margin-bottom: 15px;
    text-align: center;
}
.dictionary_item_description{
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    font-family:'Times New Roman';
    text-align: center;
}
.dictionary_controler{
    cursor: pointer;
}
.dictionary_indicator_container{
    width: 50%;
    height: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.dictionary_indicator {
    height: 5px;
    width: 10%;
    background-color: grey;
    border-radius: 2px;
}
.dictionary_indicator_active {
    height: 5px;
    width: 10%;
    background-color: black;
    border-radius: 2px;
}