*{
    margin: 0;
    padding: 0;
}

html { 
    background-image: url("../images/index-images/hiking-backdrop.jpeg"); 
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#landing {
    padding: 20px;
    color: white;
    font-size: 2.5rem;
    width: 476px;
    max-width: 100%;
    text-shadow: 2px 2px 2px rgb(41, 41, 41);
}
#landing img{
   vertical-align: middle;
}
.info-input {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    border: 1px grey solid;
    font-size: 1.5rem;
}     

.inputDiv{
    padding-top: 10px;
}

#submit-btn {
	background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
	background-color:#77b55a;
	border-radius:4px;
	border:1px solid #4b8f29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:1.25rem;
	font-weight:bold;
	padding:11px 30px;
	text-decoration:none;
    text-shadow:0px 1px 0px #5b8a3c;
    width: 100%;
}
#submit-btn:hover {
	background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
	background-color:#72b352;
}
#submit-btn:active {
	position:relative;
	top:1px;
}
#logo{
    text-align: center;
    width: 200px;
}
/* Media Query */

@media only screen and (min-device-width : 51px) and (max-device-width : 480px) {
    #landing{
        font-size: 1.5rem;
        display: block;
        max-width: 100%;
        /* background-position: center; */
        background-repeat: repeat-y;
    }
    .info-input{
        max-width: 80%;
    }
    html{
        display: inline;
        max-width: 100%
    }
  }
  @media only screen and (min-device-width : 481px) and (max-device-width : 630px) {
    #landing{
        font-size: 2.5rem;
        max-width: 100%;
        background-repeat: repeat-y;
    }
    .info-input{
        max-width: 80%;
    }
    html{ 
        max-width: 100%
    }
  }

