body {/*for removing little space which is by default by the browser*/
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
header {
    background-color: rgb(255, 255, 255, 0.8); /*fourth parameter used for selecting transparency of color*/
    display: flex;
    border-bottom: 1px solid #d4d7d4;
    position: fixed;
    width: 100%;
    height: fit-content;
    backdrop-filter: blur(5px);
}
header img {
    height: 30px;
    width: 30px;
    margin-left: 30px;
    margin-top: 23px;
    margin-right: 10px;
}
.highlightedText {
    color: blue;
}
sub {
    font-weight: normal;
    font-size: small;
}
.bodyMarginHeaderNotIncluded {
    margin: 1.5%;
}
.codeBox {
    height: 350px;
    display: none;
}
#htmlbox {
    border: 2px solid yellow;
    display: block;
    }
#cssbox {
    border: 2px solid blue;
    }
#jsbox {
    border: 2px solid red;
    }
button {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid #d4d7d4;
    border-radius: 8px;
    cursor: pointer;
    }
#htmlbutton {
    background-color: yellow;
    }
textarea {
    width: 100%;
    height: 100%;
    background-color: #363636;
    color: white;
    resize: none; /*remove resizing*/
    outline: none; /*remove outline that comes when user typing*/
    }
iframe {
    height: 450px;
    width: 100%;
    background-color: white;
    border: 1px solid #d4d7d4;
    }
footer {
    text-align: center;
    background: linear-gradient(to right,rgb(0, 0, 222),rgb(119, 119, 255));
    color: white;
    padding: 10px;
    position: relative;
    bottom: 0;
}
