#secretContent {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
input {
    height: 24px;
    width: 212px;
    background-color: #b6b6b6;
    border-right: 2px solid #fdffff;
    border-bottom: 2px solid #fdffff;
    border-top: 2px solid #818181;
    border-left: 2px solid #818181;
    margin: 1px;

    font-size: 26px;

    /* Remove default browser focus styles */
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

button {
    padding: 0px;
    margin: 0px;

    width: 28px;
    height: 28px;

    font-family: monospace;

    background-color: #b6b6b6;
    border-top: 2px solid #e7e7e7;
    border-left: 2px solid #e7e7e7;
    border-right: 2px solid #818181;
    border-bottom: 2px solid #818181;
}
button:active {
    border-top: 2px solid #818181;
    border-left: 2px solid #818181;
    border-right: 2px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
}
}