/* General Styles */
html {
    font-size: 16px;
}
body {
    background-color: #000;
    color: #FFF;
}
@media screen and (min-width: 992px) {
    .main-container {
        width: 30%;
    }
}

/* Title Styles */
.disdik-title-container {
    border-bottom: 1px solid gray;
}
.disdik-title {
    font-weight: 700;
    font-size: 2rem;
}
.disdik-title span {
    font-size: 1rem;
}

/* Dikkle Styles */
.dikkle-container {
    margin-top: 8.5rem;
}
.dikkle-input {
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
    text-align: center;
    line-height: 3rem;
    background-color: transparent;
    border: 2px solid gray;
    margin-left: 0.175rem;
    margin-right: 0.175rem;
    color: #FFF;
    text-transform: uppercase;
    caret-color: transparent;
    font-weight: 700;
}
.dikkle-input.correct {
    background-color: green;
    border-color: green;
}
.dikkle-input.incorrect {
    background-color: gray;
}
.dikkle-input.mismatch {
    background-color: gold;
    border-color: gold;
}