
@import url('https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html{
    scroll-behavior: smooth;
}

#mainBG{

    width:100%;
}
*{
    padding: 0;
    margin:0px;
}
body{
    min-height: 100vh;
    background-attachment: fixed;
    background-image: url(Images/1.jpg);
    background-size:cover ;
    color:white;
    background-repeat:no-repeat;
    background-position: center;
    font-family: "Manrope", sans-serif;
}

#home{
    height: 70vh;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
nav{
    background-color: white;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
    margin-top: 0;
    padding: 0;
    position: sticky;
    top: 0px;
    z-index: 8;
    
}

nav ul{
    width: 100%;
    list-style:none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
}

nav li{
    
    height: 50px;
}

nav a{
    height:100%;
    padding:0 30px;
    display: flex;
    align-items: center;
    color:black;
    text-decoration: none;
}

nav a:hover{

    background-color: #b6b5b5;
}
nav li:first-child{
    margin-right: auto;
}

#sidebar{

    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 9;
    background-color: rgba(255, 255, 255, 0.312);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.5s;
}

.isOpen{
     
    transform:translateX(0%) ;
}
.hide{
    transform: translateX(100%);
}

#sidebar li{
    width: 100%;
}

#sidebar a{
    width: 100%;
}
#menuBtn{
    display: none;
}

@media(max-width:800px) {
    
    .hideOnPhone{
        display: none;
    }
    #menuBtn{
        display: block;
    }
}

@media(max-width:400px){

    #sidebar{
        width:100%;
    }
}

#heading{
    font-family: Embed Code;
    text-align: center;
    font-size: 25px;
    color: rgb(107, 107, 107);
}


.mainPage{

    text-align: center;
    float: center;
    background-color: rgba(255, 255, 255, 0.356);
    color: black;
    padding: 30px;
    margin: 20px;
    border: 0px solid ;
    border-radius:30px ;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(7px);
    
}

#joinBtn{

    padding:10px 30px;
    margin:10px;
    font-size: 30px;
    border:0px solid;
    border-radius: 50px;
    letter-spacing: 1.5px;
    background-image: linear-gradient(to right,#8B93FF,#5755FE,#FF71CD);
    overflow: hidden;
    position: relative;
    transition-duration:0.3s ;

    
}

#joinBtn:hover{

    transform: scale(1.2);
    transition:all 0.5s ease;
}

#joinBtn a{
    text-decoration: none;
    color: white;
    display: block;
}

#joinBtn span{

    position: absolute;
    background: #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: animate 1s linear infinite;
}

@keyframes animate {
    0%{
        height: 0;
        width: 0;
        opacity: 0.5;
    }
    100%{
        height: 500px;
        width: 500px;
        opacity: 0;
    }
}

h2{
    font-size: 30px;
    margin: 0 0 20px 0px;
    text-decoration: underline;
    letter-spacing: 1.5px;
}

.text{
    font-size: 25px;
}

#container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info{

    background-color: black;
    color: white;
    border-radius: 20px;
    margin: 10px 5px;
    overflow: hidden;
    height: 400px;
    width: 230px;
    transition-duration:0.3s ;

}
.info:hover{
    cursor: pointer;
    transform:scale(1.03) translateY(-5px) ;
    transition:all 0.5s ease;
}

.info:after{
    transform: scale(1);
}

.img{

    background-color: #5755FE;
    height: 200px;
    background-size: cover;
}

#img1{
    background-image:url('Images/7.jpg') ;
}

#img2{
    background-image:url('Images/9.jpg') ;
}

#img3{
    background-image:url('Images/21.jpg') ;
}

#img4{
    background-image:url('Images/20.jpg') ;
}

h3 {
    text-decoration: underline;
    margin: 5px;
}

.footer{

    text-align: center;
    background-color: rgb(51, 51, 51);
    padding: 10px;
    font-size: 15px;
}

.main{
    text-decoration: none;
    font-size: 25px;
}

::-webkit-scrollbar{

    background-color: black;
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(#8B93FF,#5755FE,#FF71CD);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(pink, rgb(51, 0, 255));
}
