@media screen and (min-width: 1200px){
    h1.display-3{  font-size: 4rem;}
  

}
@media screen and (min-width: 992px) and (max-width: 1199px){
    h1.display-3{font-size: 3.5rem;}
}
@media screen and (min-width: 768px) and (max-width: 991px){
    h1.display-3{font-size: 3rem;}
}
@media screen and (min-width: 576px) and (max-width: 767px){
    h1.display-3{font-size: 2.5rem;}
}
@media screen and (max-width: 575px){
    h1.display-3{font-size: 2rem;}
    
}

div#pageTitle{
    border-radius: 15px;
    border: #9350A8 1px solid;
    color: #ffffff;
    font-weight: bold;
    background-color: #9350A8;
}
div#sidenavCollapse{
    background-color: #8C6DFF;
    padding-left: 20px;
    padding-right: 20px;
    border: #8C6DFF 1px solid;
    border-radius: 15px;

}
a.nav-link{
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px;
    background-color: #FFF;
    border: 1px solid #005EFF;
    color: #005EFF;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

a.nav-link:hover{
    background-color: #005EFF;
    color: #FFF;
}
a.nav-link.active{
    background-color: #005EFF;
    color: #FFF;
}
h2#navTitle{
    color: #FFF;
}
footer{
    background-color: #6E7DFF;
    color: #FFF;

}
h2.page-title{
    color: #ffffff;
    font-weight: bold;
    background-color: #9350A8;
}
form label{
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}
form input[type=submit]{
    background-color: #9350A8;
    color: #FFF;
    border: 1px solid #9350A8;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

form input[type=submit]:hover{
    background-color: #FFF;
    color: #9350A8;
    border: 1px solid #9350A8;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    padding-left: 50px;
    padding-right: 50px;
    
}
/* loggedin members page*/
h4.tunetime{
    margin-top: 10px;
    margin-bottom: 10px;
}
a#registerUser{
    background-color: green;
    color: #FFF;
}
div#actionButtons a{
    box-shadow: 5px 5px 5px #888888;
}
div#actionButtons a:hover{
    background-color: #fff;
    color: #000;

}
form#createEvent{
    background-color: rgb(160, 160, 160);
    opacity: 0.9;
    padding: 20px;
    margin-bottom: 20px;
}
form#createEvent input{
 border: solid 1px #000;
 border-radius: 5px;
 font-weight: bold;
 margin-left: 20px;
 margin-right: 20px;
}
form#createEvent input[type=submit]{
    box-shadow: #000 5px 5px 5px;
}
.calendar{
 
    width: 700px;
    height:400px;
    margin: 0 auto;
    margin-top: 10px;
    z-index: 1;
}
#actionButtons{
    position: relative;
    z-index: 2;
}