body {
    background: ghostwhite;
    font-family: Montserrat;
    margin: 0;
    padding: 0;
}

* {
    -webkit-appearance: none;
}

.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.unpointable {
    pointer-events: none;
}

img {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}




/* MAIN PANELS */


/* TOP PANEL */ .topPanel {
    position: fixed;
    top: 0rem;
    left: 0rem;    
    right: 0rem;
    height: 4rem;
    margin: 0;
    padding: 0;
    z-index: 1;
    /*overflow: hidden;*/
}

/* CONTENT HOLDER PANEL */ .contentHolderPanel {    
    position: fixed;
    top: 5rem;
    bottom: 0rem;
    left: 0rem;
    right: 0rem;    
    margin: 0;    
    padding: 0;
    background: white;
    overflow: auto;
}

.contentHolderPanel::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(104, 94, 94, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);    
    background-color: #F5F5F5;
    
}

.contentHolderPanel::-webkit-scrollbar {
	width: 0.75rem;
    background-color: transparent;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contentHolderPanel::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(124, 116, 116, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #e5e6fc;
    border-radius: 1rem;
}

/* MAIN MEDIA MANIPULATIONS */

.mediaChecker {
    display: inline-block;
    position: absolute;
    top: 0rem;
    left: 50%;
    width: 5rem;
    height: 5rem;
    line-height: 2.5rem;
    text-align: center;
    color: white;
    background: black;
}

@media only screen and (min-width: 1024px) {

    .mediaChecker {
        background: red;
    }
    * {
        font-size: 16px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (min-width: 960px) and (max-width: 1023px) {
    .mediaChecker {
        background: orange;
    }
    * {
        font-size: 15px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (min-width: 900px) and (max-width: 959px) {
    .mediaChecker {
        background:rgb(146, 146, 22);
    }
    * {
        font-size: 14px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (min-width: 836px) and (max-width: 899px) {
    .mediaChecker {
        background:green;
    }
    * {
        font-size: 13px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (min-width:769px) and (max-width: 835px) {
    .mediaChecker {
        background:blue;
    }
    * {
        font-size: 12px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (min-width: 426px) and (max-width: 768px) {
    .mediaChecker {
        background:darkblue;
    }
    * {
        font-size: 12px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (min-width: 381px) and (max-width: 425px) {
    .mediaChecker {
        background:purple;
    }
    * {
        font-size: 10px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media only screen and (max-width: 380px) {
    .mediaChecker {
        background:pink;
    }
    * {
        font-size: 9px;
    }
    body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}