body
{
	user-select:none;
	background-color: #6996eb;
}
.noPadding
{
	padding:0px;
}
.toBottom{
    position: fixed;
    bottom: 0vh;
}
#heading
{
	color: black;
	font-size: 2.5vw;
	margin-top: 2vh;
    font-weight: bold;
}
.borderClass{
	border-radius: 2vh;
    border: 2px solid rgba(250, 228, 35, 0.726);
    background-color: rgba(248, 248, 255,0.7);
	justify-content: center;
    align-items: center;
    display: flex;
}
.buttonClass {
    color: rgb(0, 0, 0);
    font-size: 3.3vw;
    font-weight: bold;
    height: 13vh;
    margin-top: 1vh;
    box-shadow: 2px 3px 4px black;
  }
.glyphicon {
    top: 0px;
   line-height: inherit;
   font-family: 'Glyphicons Halflings';
   font-style: normal;
   font-weight: 400;
   color:black;
   font-size: 7vh;
}
.blink_me
{
	animation:blinker 1s linear infinite;
}
@keyframes blinker
{
	50%
	{
		opacity:0.5;
	}
}