:root{
    --main-color:#89216B;
    --text-color:#fff;
    --dark-color:rgb(12, 10, 10);
}

*{
    box-sizing: border-box;
}

.aboutimg1{
    width: 80%;
    box-shadow: 10px 10px 5px var(--dark-color);
}

.aboutimg2{
    width: 60%;
    box-shadow: 10px 10px 5px var(--dark-color);
}



body{
    font-family: sans-serif;
    /* margin: 0;
    padding: 0; */
    background-image: radial-gradient(circle, #DA4453, var(--main-color)) !important;
}

header{
    display: grid;
    grid-auto-flow: column;
    width: 100%;
    text-align: center;
    background-color: rgb(99, 23, 77);
    border: 1px solid var(--text-color);
    /* position: absolute; */
}


h4{
    color: var(--text-color);
    text-align: center;
}


.youtube{
    box-shadow: 10px 10px 5px var(--dark-color);
    margin-bottom: 5%;
}

.pad{
    margin-bottom: 10%;
}

.me{
    font-size: 3rem;
    font-weight: 1000;
    color: var(--text-color);
    text-align: center;
    background-image: radial-gradient(circle, #DA4453, #89216B);
    font-family: monospace, sans-serif;
}

nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    display: flex;
    flex-wrap: wrap;
}

nav ul li{
    flex:1;
    margin: 0 .4rem;
    position: relative;
}
nav ul li a{
    display: block;
    text-align: center;
    text-decoration: none !important;
    padding: 1.2rem 1rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-color) !important;
    background-color: rgb(99, 23, 77);
}

canvas{
    display: block;
}


/* Dropdown */
nav ul li ul{
    position: absolute;
    background: var(--text-color);
    width: 100%;
    top: 100%;
    display: none;
}

nav ul li ul li a{
    color: var(--text-color) !important;
}
nav ul li:hover ul{
    display: block;
}
.label, #toggle{
    display: none;
}

.drop{
    z-index: 1;
    border: 1px solid var(--text-color);
}

.col-sm-4{
    color: var(--text-color);
}
/*End of Dropdown*/

/*  Hover Effects */
nav.menu ul li a:hover{
    color: var(--text-color) !important;
}
nav.menu ul li a{
    position: relative;
}

nav.menu ul li a:after{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 0;
    content: '.';
    color: transparent;
    background: var(--text-color) !important;
    height: 3px !important;
}
nav.menu ul li a:hover:after{
    width: 100%;
}
nav ul li a, nav ul li a:after, nav ul li a:before{
    transition: all .9s;
}
/* End of Hover Effect */

/* Next and Previous Buttons */


.next{
    background-color: rgb(99, 23, 77);
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--text-color);
    /* margin-top: 3%; */
    font-size: large !important;
    font-weight: 700;
    font-family: monospace, sans-serif;
    padding-left: 5px;
    padding-right: 5px;
    text-transform: uppercase;
}

.next:hover {
    background-color: var(--text-color);
    color: rgb(99, 23, 77);
}

.previous{
    background-color: rgb(99, 23, 77);
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--text-color);
    /* margin-top: 10%; */
    font-size: large !important;
    font-weight: 700;
    font-family: monospace, sans-serif;
    padding-left: 5px;
    padding-right: 5px;
    text-transform: uppercase;
}

.previous:hover {
    background-color: var(--text-color);
    color: rgb(99, 23, 77);
}
/* End of Buttons*/

/* Gallery CSS */
.item{
    width: 30%;
    display: inline-block;
    margin: 1rem;
    position: relative;
    box-shadow: 10px 10px 5px var(--dark-color);
    /* transition: all 0.3s cubic-bezier(.25,.8,.25,1); */
}

.item img{
    width:100%;
    height: 100%;
}


.item img:hover{
    filter: blur(2px) brightness(80%);
    /* box-shadow: 0 10px 15px rgba(0,0,0,0.25), 0 5px rgba(0,0,0,0.22);  */
    cursor: pointer;
}

/* End of Gallery CSS */

/* Contact Form */
.contactform input[type="email"],.contactform input[type="text"],.contactform textarea{
    display: block;
    width: 100%;
    color: #57494b;
    background-color: var(--main-color);
    /* background-clip: padding-box; */
    border: 1px solid #ced4da;
} 


input, textarea{
    background-color: rgb(207, 198, 198);
}

.col-sm label{
    color: var(--text-color);
    font-weight: 500;
}

.formsubmit{
    background-color: rgb(99, 23, 77);
    color: var(--text-color);
    text-decoration: none;
    border: 1px solid var(--text-color);
    /* margin-top: 3%; */
    font-size: large !important;
    font-weight: 700;
    font-family: monospace, sans-serif;
    padding-left: 5px;
    padding-right: 5px;
    text-transform: uppercase;
}

.formsubmit:hover{
    cursor: pointer;
    background-color: var(--text-color);
    color: rgb(99, 23, 77);
    text-decoration: underline;
}

.contacttext{
    font-size: large;
}

/*End of Contact Form */

.contact2{
    text-align: center;
}
.h3{
    color: var(--text-color);
}


/* Media Query */
@media(max-width:700px){

    /* Nav */
    nav ul{
        display: none !important;
    }
    .label{
        display: block !important;
        cursor: pointer;
    }
    
    .fa-bars{
        font-size: 2rem;
        position: absolute;
        top:1rem;
        right: 1rem;
        color: var(--text-color);
        z-index: 1;
    }
    #toggle:checked+.nav{
        display: block !important;
    }
    /* end of Nav */
}

@media(max-width:1200px){
    .item{
        width: 100%;
    }
}

@media(max-width:900px){
    .audioplayer{
        width: 100%;
    }
}

.audio1{
    
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 90%;
    margin: auto;
    background: transparent;
    justify-content: space-around;
}

.audioplayer{
    color: var(--text-color);
}

.carousel-inner > .carousel-item > img{
    width: 100%;
    margin: auto;
}

#myCarousel{
    box-shadow: 10px 10px 5px var(--dark-color);
}



