* {
    margin: 0;
    padding: 0;
    font-family: "poppins", "sans-serif";
}

body {
    height: 100vh;
    width: 100%;
    background-color: black;
    color: yellow;
}

header {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgb(45, 42, 42);
    border-bottom: 5px solid yellow;
}

.logo,
.pageHeading {
    color: rgb(11, 207, 214);
    background-color: rgba(240, 255, 240, 0);
}

.modes {
    min-height: 110px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: yellow;
    gap: 10px;
}

.modesBtns button {
    padding: 10px;
    font-size: 14px;
    font-weight: bolder;
    border: none;
    outline: none;
    border-radius: 10px;
    background-color: yellow;
    transition: 0.4s ease;
}

.modesBtns button:hover {
    background-color: orange;
}

.selectedMode {
    font-size: 18px;
    font-weight: bolder;
}

.modesHeader {
    font-size: 24px;
}

.warningMessage {
    color: red;
}

.testContent {
    min-height: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testText {
    height: 280px;
    width: 85%;
    background-color: rgb(255, 174, 0);
    outline: none;
    border: none;
    color: rgb(0, 0, 0);
    text-align: left;
    font-size: 20px;
    font-weight: bolder;
    resize: none;
    border-radius: 30px;
    padding: 15px;
}

.userText {
    height: 280px;
    width: 85%;
    background-color: black;
    outline: none;
    border: 2px solid;
    border-radius: 30px;
    color: yellow;
    text-align: left;
    font-size: 20px;
    font-weight: bolder;
    resize: none;
    padding: 15px;
}

.actionBtns {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* .startBtn, */
.resetBtn {
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: bolder;
    transition: 0.3s ease-in-out;
}

/* .startBtn {
    background-color: greenyellow;
} */

.resetBtn {
    background-color: rgba(238, 65, 65, 0);
    color: yellow;
}

/* .startBtn:hover {
    background-color: rgb(8, 235, 8);
} */

.resetBtn:hover {
    border: 1px solid yellow;
}

.resultDisplay {
    display: none;
}

.resultContent {
    display: none;
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.restartBtn {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bolder;
    background-color: yellow;
    transition: 0.4s ease;
}

.restartBtn:hover {
    background-color: orange;
}

.resultHeading {
    text-decoration: underline;
}

button {
    cursor: pointer;
}

textarea::placeholder {
    color: white;
    font-size: 24px;
    text-align: left;
}