body {
         background-image: url('images/bg.png');
        }
       	
	body {
	 margin: 0 !important;
	 padding: 0 !important;
	}

	@font-face {
	 font-family: Minecraftia; src: url('Minecraftia.ttf');
	} 
        
	h1 {
         font-family: Minecraftia;
         font-size: 19px;
         margin: 0px;
        }
        
	h2 {
         font-family: Minecraftia;
         font-size: 16px;
         margin: 0px;
         margin-bottom: 0px;
        }

	h3 {
         font-family: Minecraftia;
         font-size: 12px;
         margin: 0px;
         margin-bottom: 0px;
	}

        a:link {
         text-decoration: none;
         color: black;
        }

        a:visited {
         text-decoration: none;
         color: black;
        }

        a:hover {
         text-decoration: none;
         color: black;
        }

        a:active {
         text-decoration: none;
         color: black;
        }

        .alert {
         padding: 10px;
         background-color: #f44336; /* Red */
         color: white;
        }

        .info {
         padding: 10px;
         background-color: #008000; /* Green */
         color: white;
        }

        .closebtn {
         margin-left: 15px;
         color: white;
         font-weight: bold;
         float: right;
         font-size: 22px;
         line-height: 20px;
         cursor: pointer;
         transition: 0.3s;
        }

        .closebtn:hover {
         color: black;
        } 

	.radio-input {
	 display: inline-block;
         vertical-align: top;
	}

	.center {
	 margin-left: auto;
	 margin-right: auto;
	}

	.tooltip {
	 position: relative;
	 display: inline-block;
	 border-bottom: 1px dotted black;
	}

	.tooltip .tooltiptext {
	 visibility: hidden;
	 width: 150px;
	 background-color: black;
	 color: #fff;
	 text-align: center;
	 border-radius: 6px;
	 padding: 5px 0;
	 position: absolute;
	 z-index: 1;
	 top: 150%;
	 left: 50%;
	 margin-left: -60px;
	 opacity: 0;
	 transition: opacity 1s;
 	}

	.tooltip .tooltiptext::after {
	 content: "";
	 position: absolute;
	 bottom: 100%;
	 left: 50%;
	 margin-left: -5px;
	 border-width: 5px;
	 border-style: solid;
	 border-color: transparent transparent black transparent;
 	}

	.tooltip:hover .tooltiptext {
	 visibility: visible;
	 opacity: 1;
	}

