*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a:hover{
    text-decoration: underline;
    
}
body{
    height: 100%;
}
/*head-showcase*/
#head-showcase{
    background-image: url('./images/pic1.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
/*main header*/
#mainHead{
    
    
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
}


#mainHead h1{
    color: white;
    font-family: cursive;
    font-size: xx-large;
}

#mainHead h2{
    color: white;    
    font-weight: 100;
    font-size: 20px;
    padding-top: 20px;
    font-family: sans-serif;
}

/*navigation bar*/

#navigation{
    background-color: whitesmoke;
    height: 70px;
    opacity: .9;
    position: relative;    
}

#navigation ul li{
    width: 200px;
    text-align: center;
    height: 50px;
    display: inline-block;
    padding-top: 17px;  
    list-style: none;

}
#navigation ul{
 position: absolute;
 right: 50px;
 font-family: cursive;
}

#navigation ul li a{
    text-decoration: none;
    color: black;
}
#navigation ul li a:hover{
    /* color: red; */
    text-decoration: underline;
    display: block;
}
#navigation ul li a:active{
    color: red;
}
/*showcase*/
#showcase{
    
    height: 400px;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
#heading-showcase{
    font-family: cursive;
    font-size: xx-large;
    padding-bottom: 100px;
}
#btn-showcase{
    background-color: rgb(241, 44, 44);
    color: white;
    height: 40px;
    width: 200px;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bolder;
}
#btn-showcase:active{
    
    background-color: white;
    color: black;
}
/*container*/
#content{
    
    margin-top: 100px;
    background-color: whitesmoke;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* overflow:hidden; donot remove it if height is not a fit-content*/
}
#content .box{
    /* border: 1px solid black; */
    color: black;
    text-decoration: none;
    width: 21%;
    height: fit-content;
    box-shadow: 3px 3px 3px 3px lightgray;
    
    /* display:inline-block; */
        
    margin: 100px 20px;
    text-align: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 5px;
}
/*container 2*/
#content-2{
    height: 500px;
    width: 100%;
    background-image: url('./images/pic6.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: cursive;
    text-align: center;
}
/*footer*/
#mainBlock{
    /* position:fixed; */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: black;
    width: 100%;
    height: 250px;
    display:flex;
    justify-content: space-between;

}
#mainBlock .block{
    width: 400px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: cursive;
    
}
#mainBlock .block ul,a{
    list-style: none;
    color: white;
    text-decoration: none;
}


/*signUp form*/
#signUp_form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: whitesmoke;
    height: 300px;
    width: 400px;
    border-radius: 30px;
}

#signUp_form .block{
    margin-top: 20px;
}
#signUp_form .inpt-txt{
    height: 40px;
    width: 300px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid lightgray;
}

#signUp_form .signUp-btn{
    background-color: red;
    height: 25px;
    width: 100px;
    border-radius: 10px;
    border: none;
    color: white;
    font-family: cursive;
}
#signUp_form .signUp-btn:active{
    color: black;
    background-color: white;
}

