*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: cursive;
}
html{
    scroll-behavior: smooth;
}
body{
    scroll-behavior: smooth;
    width: 100vw;
position: relative;
   background: var(--light-mode);
   --light-mode:linear-gradient(120deg, #f093fb , #f5576c );

   --text-color: black;

    --primary-color: #f5576c;
}
body.active{
    --light-mode: linear-gradient(45deg, #000 , #fff);

    --primary-color: rgb(255, 0, 123);
    --text-color: white;

    background: var(--light-mode);
}

header{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 22px;
    font-weight: 600;
    background: var(--primary-color);
    height: 60px;

}
header p{
    padding-top: 10px;
    font-style: italic;
    font-size: 26px;
    text-decoration: 3px solid underline #000000;
    font-weight: 900;
    padding-left: 20px;
    color: rgb(255, 255, 255);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
nav ul{
    display: flex;
    position: absolute;
    gap: 20px;
    list-style: none;
    right: 20px;
    top: 10px;
    list-style: none;
    text-decoration: none;
}
nav ul a {
    text-decoration: none;
}
nav ul li{
    transition:  0.3s all ease;
    list-style: none;
    text-decoration: none;
    color: var(--text-color);
}
nav ul li a{
    text-decoration: none;
    
}
nav ul li:hover{
    transform: translateY(-5px);
    background: #f093fb;
    padding: 10px;
    border-radius: 20%;

}

nav ul button{
    margin-right: 20px;
    background: none;
    padding: 5px;
    border-radius: 50%;
}
nav ul button i{
    font-size: 22px;
    color: var(--text-color);
}

.container{
    position: relative;
    max-width: 100%;
    
    margin: auto;
}
.carosoule{
position: absolute;
width: 100%;
height: 600px;}
.container img{
width: 100%;
height: 100%;}
.text{
    position: absolute;
    display: flex;
    background: rgb(0, 242, 255);
    height: 60px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    padding: 20px;
    margin-top: -80px;
    margin-left: 20px;
    text-decoration: 2px solid underline;
    transition: 0.3s all ease;
    color: var(--text-color);

}
.text:hover{
    transform: translateY(-10px);
}

.about{
    position:relative;
    height: 600px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    top: 600px;

}
.about h1{
    position: absolute;
    font-size: 36px;
    font-style: italic;
    text-decoration: 2px solid underline;
    width: 400px;
    left: 46.5%;
    margin-top: 50px;
    color:var(--primary-color);
}
.about img{
    height: 400px;
    width: 600px;
    margin: 50px;
    border-radius: 30px;
    transition: 0.3s all ease;
}
.about img:hover{
    transform: translateX(-10px);
}
.about p{
    font-size: 22px;
    margin-top: 60px;
    width: 80%;
    padding: 20px;
    margin-top: 100px;
    color: var(--text-color);
}
.Event{
    height: 500px;
    width: 100%;
    position: relative;
    top: 600px;
    display: flex;
}
.Event img{
    height: 400px;
    width: 600px;
    border-radius: 30px;
    border: 3px dashed black;
    margin: 50px;
    transition: 0.3s all ease;
}
.Event img:hover{
    transform: translateY(-10px);
}
.Event h1{
position: absolute;
margin-left: 20px;
text-decoration: 2px underline;
font-style: italic;
font-weight: 600;
color: var(--text-color);
list-style: none;
text-decoration: none;

}
.Event p{
    font-size: 22px;
    padding: 20px;
    margin-top: 80px;
    color: var(--text-color);

}
.Event form{
    position: absolute;
    width: 280px;
    height: 360px;
    background: #ffffff;
    border-radius: 12px;
    margin: 20px;
    margin-top: 200px;
    transition: 0.3s all ease;
    z-index: 100;
}
.Event form:hover{
    transform: translateY(-10px);
}
.Event form h3{
    margin-top: 10px;
    margin-left: 20px;
}
.Event span{
    display: block;
    margin: 20px 0px 0 20px;
}
.Event input{
    display: block;
    margin: 0px 0px 0px 20px;
}
.contact{
    position: relative;
    background:black;
    
    margin-top: 500px;   
}

.contact li{
    display: inline;
    font-size: 22px;
    color: white;
margin-left: 20px;}

.contact p{
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
    ;
    color: yellow;

}
.contact span{
    color: rgb(214, 8, 73);
    text-align: center;
}

#submit{
    height: 30px;
    width: 90%;
    margin-top: 20px;
    background: orange;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: 0.3s all ease;
    font-size: 18px;
    color: white;
text-shadow: black 0 0 0 0.1;
}

#submit:hover{
    transform: translateY(-10px);
    cursor: pointer;
    border: 3px dashed #f5576c;
}
