body {
    margin: 0;
    background-color: blueviolet;
    font-family: Comic sans ms;
}

#heading {
    margin: auto;
    width: 50%;
    color: white;
    text-align: center;
}

.allInpts {
    display: block;
    margin: auto;
    width: 50%;
    padding: 10px;
    font-size: large;
    margin-bottom: 5px;
    text-align: center;
}

#inputs {
    width: 30%;
    padding: 10px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#replaceItBtn {
    cursor: pointer;
    color: white;
    border: 2px solid blueviolet;
    background-color: blueviolet;
    font-weight: bold;
}

#replaceItBtn:hover {
    background-color: whitesmoke;
    color: blueviolet;
    transition-duration: 1s;
}

#informationDiv {
    position: fixed;
    width: 40%;
    text-align: center;
    margin: auto;
    top: 10%;
    left: 10%;
    right: 10%;
    background-color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
    font-size: larger;
    padding: 10px;
    border: 2px solid red;
    display: none;
}

#showResult {
    background-color: white;
    width: 50%;
    height: 200px;
    margin: auto;
    margin-top: 20px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: auto;
    cursor: pointer;
}

#checkboxis {
    color: white;
    text-align: center;
    font-size: large;
    margin: 10px;
}
