body {
    margin: 0;
    overflow-y: scroll;
}

p {
	list-style-type: square;
}

.gradient {
	background-image: linear-gradient(white, #9BAEFFFF);
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.gradient::after {
	content: "";
	background-image: url("images/bg1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	opacity: .25;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.logo {
	position: absolute;
	left: 20px;
	top: 10px;
	width: 400px;
	height: auto;
	text-align: center;
	z-index: 2;
}

.label {
	position: absolute;
	top: 100px;
	left:  120px;
	color: white;
	font-size: 40px;
	font-weight: bold;
 	font-family: "Bookman Old Style";
	text-align: left;
	z-index: 3;
	background-color: #00000044;
}

.features {
	position: absolute;
	top: 230px;
	left: 140px;
	color: black;
	font-size: 30px;
	font-weight: normal;
 	font-family: "Bookman Old Style";
	text-align: left;
	list-style-type: square;
	z-index: 3;
}

.contact {
	position: absolute;
	top: 470px;
	left: 60px;
	color: black;
	font-size: 30px;
	font-weight: normal;
 	font-family: "Bookman Old Style";
	text-align: left;
	list-style-type: circle;
	z-index: 3;
}

/* ----------------------
   @media control
  -----------------------*/
  
 /* for screens <= 880px */
@media screen and (min-width: 769px) and (max-width: 880px) 
{
	.logo {width: 350px; }
	.features {font-size: 28px;}
	.label {font-size: 35px;}
	.contact {font-size: 28px;}
}

@media screen and (min-width: 668px) and (max-width: 769px) 
{
	.logo {width: 320px; }
	.features {font-size: 26px; left: 140px; top: 210px;}
	.label {font-size: 33px; top: 90px;}
	.contact {font-size: 26px;}
}
	
/* iPhone 6/6s/7/8 */
@media only screen and (min-width: 480px) and (max-width: 668px) 
{
	.logo {width: 300px; }
	.features {font-size: 24px; left: 140px; top: 200px;}
	.label {font-size: 30px; top: 90px;}
	.contact {font-size: 24px;}
}

@media only screen and (min-width: 10px) and (max-width: 480px) 
{
	.logo {width: 280px; }
	.features {font-size: 22px; left: 120px; top: 210px;}
	.label {font-size: 28px; left: 100px; top: 80px; }
	.contact {font-size: 22px; }
}

/* iPhone 6/6s/7/8 in landscape mode */
@media only screen and (min-width: 10px) and (max-width: 668px) and (orientation: landscape) 
{
	.logo {}
}
