/* Stylesheet for index */

*{
    color: #f2f2f2;
}

/* Background Image */

body{
    background-image:url("../assets/background4.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

div.header-img{
    width: 100%;
    background-color: #666;
    overflow: hidden;
    position: fixed;
}

#header-img{
    width: 300px;
    margin: auto;
    display: block;
}

div.nav-bar{
    overflow: hidden;
    position: fixed;
    background-color: #666;
    width: 100%;
    top: 90px;
}

.nav-link{
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    padding: 14px 16px ;
    float: right;
    transition: background .5s ease;
}

.nav-link:hover{
    background-color: #1DB954;
    color: black;
}

.title{
    margin-top: 220px;
    font-size: 80px;
    color: #1DB954;
    text-align: center;
}

.mission{
    margin-top: 10px;
    font-size: 55px;   
    text-align: center;
}

#email{
    display: block;
    margin: auto;
    width: 250px;
    padding: 8px;
    border-radius: 50px;
    background-color: #666;
    font-size: 15px;
    margin-top: 80px;
}

#email::placeholder{
    color: #f2f2f2;
}

#email:hover{
    
    background-color: #666;
    width: 300px;
}

#signUp{
    display: block;
    background-color: #1DB954;
    text-decoration: none;
    margin: auto;
    padding: 8px;
    border: none;
    border-radius: 50px;
    width: 100px;
    margin-top: 100px;
    text-align: center;
    font-size: 15px;
}

#signUp:hover{
    background-color: #f2f2f2;
    color: #666;
}

.text{
    background-color: #666;
    width: 700px;
    margin: auto;
    margin-top: 50px;
    border: 5px solid #1DB954;
    transition: text-shadow .5s ease;
}

.text:hover:{
    text-shadow: 0px 0px 10px;
} 

.text h2 {
    margin-top: 20px;

}

.text p{
    margin-top: 10px;
}

div.footer-img{
    width: 100%;
    background-color: #666;
    overflow: hidden;
   
    margin-top: 66px;
}

 #footer-img{
    width: 300px;
    margin: 0 auto;
    display: block;
    
}






@media(max-width: 800px){
    
    .title{
       font-size: 4rem;
    }

    .mission{
        font-size: 2rem;
    }

    .text{
        width: 400px;
    }

   
}

@media(max-width: 500px){

    .text{
        width: 250px
    }

    .nav-link{
        font-size: 12px;
    }
    
    
}

