

/*fonts found on Google fonts imported into css*/

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;900&display=swap');

*{
    margin: 0;
    padding; 0;
}

body{
    font-family: 'Nunito Sans';
    text-align: center;
}

.base{
    width: 90%;
    margin: 0 auto;
}

/*colors found using hex color picker*/

header{
    width: 100%;
    height: 100px;
    background: #7413dc;
    position: fixed;
}
.airedale{
    width: 30%;
    float: left;
    text-align: left;
    line-height: 100px;
}
.airedale a{
    text-decoration: none;
    font-size: 30px;
    font-family:'Nunito Sans';
    color: white;
}
nav{
    float: right;
    line-height: 100px;
}
nav a{
    text-decoration: none;
    font-family: sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: white;
    padding: 36px 10px;
    margin: 0 1px;
    font-weight: 799;
   
}
nav a:hover{
    background: #9a50eb;
    color: white;
    font-weight: 1000; 
    transition: 0.5s;
    font-family: "Nunito Sans";
    
}
.banner{
    background-image: url(images/forest2.jpg);
    background-size: cover;
    background-position: center center; 
    top: 100px;
    height: 100vh;
    width: 100%;
    position: fixed;
}
/*content and z-index functions for parallax effect were found on w3schools*/

.banner:after{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #7413dc;
    opacity: .35;
    z-index: -1;
}
.banner h2{
    padding-top: 8%;
    font-size: 90px;
    color: white;
}
.content{
    width: 100%;
    height: 1200px;
    position: relative;
    background-color: white;
    top: 650px;
}
.content h2{
    font-size: 40px;
    margin: 0;
    padding-top: 25px;
}
.content p{
    padding: 2% 0;
    line-height: 26px;
    text-align: justify;
    padding-right: 200px;
    padding-left: 200px;
}
h3{
    color: white;
    text-decoration: underline;
}
.list{
    text-align: left;
    padding-left: 50px;
}
label{
    width: 80px;
    display: inline-block;
}

/*form box leads to confirmation page*/

#form{
    border-radius: 15px;
    background: #7413dc;
    color: white;
    width: 300px;
    height: 130px;
    padding-top: 50px; 
    margin-left: 800px;
}
#submit{
    width: 92px;
}