/* mobile.css */


/*header*/
	html{
		font-family: Tw Cen MT, Poppins, Century Gothic, Aprows;
		background-image: linear-gradient(rgba(0, 100, 0, 0.25), rgba(0, 100, 0, 0.75)), url(zzlogo1.png);
		background-repeat: no-repeat, no-repeat;
		background-attachment: fixed, ;
		background-size: cover ,50px;
		background-position: center, top;
	}

	@media (max-width: 950px){
	html {
		max-width: 100%;
		overflow-x: hidden;
	}

	.navbar{display: none;}
	.dropbtn {
		background-color: rgba(0,100,0,0.5);
		font-size: 20px;
		border-width: 5px;
		border-style: ridge;
		border-color: darkgreen;
		cursor: pointer;
		width: 50px;
	}

	.dropbtn > .line{
		background-color: black;
		height: 2px;
		display: block;
		margin-top: 4px;
	}

	.dropbtn:hover > .line{
		background-color: black;
	}

	.dropbtn > .line + .line{
		margin-top: 8px;
		margin-bottom: 4px;
	}
  
	.dropbtn:hover{
		background-color: darkgreen;
	}
  
	.dropdown {
		position: relative;
		display: inline-block;
	}
  
	.dropdown-content {
		display: none;
		position: absolute;
		background-color: darkgreen;
		min-width: 160px;
		z-index: 1;
	}
  
	.dropdown-content a {
		color: black;
		padding: 12px 16px;
		text-decoration: none;
		display: block;
		border-width: 2px;
		border-style: solid;
		border-color: black;
		cursor: pointer;
	}
  
	.dropdown-content a:hover {
		background-color: darkgreen;
		color: limegreen;
		border-width: 2px;
		border-style: solid;
		border-color: limegreen;
	}
  
	.show {
		display:block;
	}


/*body*/

.title{
	width: 100%;
	text-align: center;
	font-size: 300%;
	margin-top: 0px;
	margin-bottom: 0px;
}

.slogan{
	width: 100%;
	text-align: center;
	margin-top: 0px;
	font-size: 200%;
	margin-bottom: 0px;
}

.text{
	width: 100%;
	text-align: center;
	font-size: 150%;
	margin-bottom: 50px;
}

.form{
    width: 100%;
    border-color: darkgreen;
    border-width: 5px;
    border-style: ridge;
    text-align: center;
    margin-left: -5px;
    margin-bottom: 5px;
}

.form-group{
    width: 100%;
    font-size: 125%;
}

.form-control{
    width: 95%;
    text-align: center;
}

.btn{
	font-size: 150%;
	width: 50%;
	background-color: rgba(0, 100, 0, 0.5);
	border-color: darkgreen;
	border-width: 5px;
	border-style: ridge;
	cursor: pointer;
	height: 50%;
    margin-bottom: 10px;
    margin-top: 5px;
}

.info{
    margin-left: -5px;
    width: 100%;
}

.infotext{
    width: 100%;
    border-color: darkgreen;
	border-width: 5px;
	border-style: ridge;
    margin-top: 5px;
}

.infotext1{
    font-size: 200%;
    text-align: center;
}

.btn1{
    border-color: darkgreen;
	border-width: 5px;
	border-style: ridge;
    font-size: 100%;
    background-color: rgba(0,100,0,0.5);
    cursor: pointer;
    margin-top: 10px;
}

hr { 
    border-color: darkgreen;
}

.footer{
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
}
}