*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

.wrapper{
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: linear-gradient(red,blue);
    background-image: linear-gradient( to right, red, blue);
    background-image: linear-gradient(to bottom, red, blue);
    background-image: linear-gradient(to bottom right , red, blue);
}
.container{
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container h1{
    margin: 40px o;
    text-align: center;
    margin-bottom: 40px;
    font-size: 5rem;
    color: rgb(72, 7, 223);
    text-shadow: 0 0 20px #000000 ;
}
.container h1:hover{
    transform: scale(1.03);
    filter: drop-shadow(0 0 10px #ff5757);
    color: rgb(255, 206, 81);
    transition: 0.3s;
}

.container pre{
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 2rem;
    color: rgb(195, 180, 229);
    text-shadow: 0 0 20px #000000 ;
}
.container pre:hover{
    transform: scale(1.03);
    filter: drop-shadow(0 0 10px #ff5757);
    color: rgb(155, 255, 68);
    transition: 0.3s;
}


.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card{
    width: 32%;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.card img{
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
    object-fit: cover;
    box-shadow:0 0 20px #333 ;
}

.Vid{
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
    object-fit: cover;
    box-shadow:0 0 20px #333 ;
    margin-top: 40px;
    margin-bottom: 40px;
}

.card:hover{
    transform: scale(1.03);
    filter: drop-shadow(0 0 10px #333);
    transition: 0.3s;
}
.card:hover img{
    filter: grayscale(0%);
}

.Vid:hover {
    filter: grayscale(0%);
}

.card figcaption{
    position: absolute;
    bottom:15px;
    left: 0;
    padding: 15px;
    width: 100%;
    height: 10%;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.5)0%, rgba(255, 255,255));
    transition: 0.3s;
}

.card:hover figcaption{
    opacity: 1;
    transform: scale(1.03);
    
}

form{
    height: 100%;
    width: 100%;
    font-family: fantasy;
    font-size: 50px;
    object-fit: cover;
    box-shadow:0 0 20px #333 ;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;

}




h3{
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    color: rgb(72, 7, 223);
    text-shadow: 0 0 20px #0000009c ;
}
h3:hover{
    transform: scale(1.03);
    filter: drop-shadow(0 0 10px #ff5757);
    color: rgb(96, 255, 120);
    transition: 0.3s;
}


#f1{
    margin-top: 100px;
}
#f2{
    text-align: start;
    justify-content: space-evenly;
    font-size: 30px;
    margin-top: 20px;
    height: 400px;
    width: 700px;
    box-sizing:border-box;
    
}


.btn-pink {
    background-color: #e84949;
    padding: 0.8rem 2.3rem;
    color: white;
    font-size: 18px;
    box-shadow: 5px 5px 7px 0px black;
    position: relative;
    z-index: 1;


}

.btn-pink::before {
    content:"";
    background-color: #ba2424;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform:scaleX(0);
    transform-origin: left;
    transition: all 1s;
    z-index: -1;
}
.btn-pink:hover:before{
    transform:scaleX(1);
} 




