main .animation-board .control .hidden {
    display: none;
    height: 0;
}

main .animation-board .control .control-section #binary-sequence {
    display: flex;
    text-align: center;
    height: 35px;
    width: 50%;
    border: none;
    background-color: #f5f5f5;
    font-size: 1.05rem;
    font-weight: 600;
}

main .animation-board .control .control-section #generate-binary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 60%;
    border: none;
    margin-top: 15px;
    background-color: #f5f5f5;
    font-size: 1rem;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}

main .animation-board .control .control-section #generate-binary:hover {
    background-color: #FF0000CC;
    color: #F5F5F5;
}

main .animation-board .control .control-section #generate-binary:active {
    transform: scale(0.98);
    transition: ease-in-out 0.1s;   
}