@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    color: black;
}

html{
    font-size: 100%;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: #e5e5e59d;
}

.logo{
    font-size: 3rem;
    color: #18184a;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover{
    transform: scale(1.1);
    color: black;
}

.regu{
    font-size: 1rem;
    cursor:pointer;
    font-weight: 450;
    transition: 0.5sec ease;
}

.regu:hover{
    transform: scale(1.1);
}

.main{
    height: auto;
    background-color: #ebebeb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 5vh;
}

.banner{
    width: 20vw;
    height: 25vw;
    background: white;
    border-radius: 30px;
    box-shadow: 15px 15px 30px #bebebe,
               -15px -15px 30px #ffffff;
    transition: 0.2s ease-in-out;
}

.banner .bg{
    width: 100%;
    height: 50%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(#e66465, #9198e5);
    display: flex;
    align-items: top;
    justify-content: right;
}

.banner .detail{
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: space-around;
}

.banner .detail h3{
    font-family: 'Lucida Sans' sans-serif;
    font-size: 1.5vw;
    font-weight: 600;
    color: black;  
}

.banner .detail .p{
    font-family: 'Lucida Sans' sans-serif;
    color: #999999;
    font-size: 1.1vw;
}
.span{
    font-family: 'Lucida Sans' sans-serif;
    font-size: 1.3vw;
    font-weight: 500;
    color: #9198e5;
}


.pspan{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media(max-width: 900px){
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
        border: none;
        outline: none;
        font-family: 'Poppins', sans-serif;
        color: black;
    }
    
    html{
        font-size: 100%;
    }
    
    body{
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
    }
    
    header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1rem 9%;
        background-color: transparent;
        filter: drop-shadow(10px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
        background-color: #e5e5e59d;
    }
    
    .logo{
        font-size: 3rem;
        color: #18184a;
        font-weight: 800;
        cursor: pointer;
        transition: 0.5s ease;
    }
    
    .logo:hover{
        transform: scale(1.1);
        color: black;
    }
    
    .regu{
        display: none;
    }
    
    .main{
        height: auto;
        background-color: #ebebeb;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner{
        width: 60vw;
        height: 70vw;
        background: white;
        border-radius: 30px;
        box-shadow: 15px 15px 30px #bebebe,
                   -15px -15px 30px #ffffff;
        transition: 0.2s ease-in-out;
    }
    
    .banner .bg{
        width: 100%;
        height: 50%;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        background: linear-gradient(#e66465, #9198e5);
        display: flex;
        align-items: top;
        justify-content: right;
    }
    
    .banner .detail{
        margin: 20px;
        display: flex;
        flex-direction: column;
        align-items: space-around;
    }
    
    .banner .detail h3{
        font-family: 'Lucida Sans' sans-serif;
        font-size: 4vw;
        font-weight: 600;
        color: black;  
    }
    
    .banner .detail .p{
        font-family: 'Lucida Sans' sans-serif;
        color: #999999;
        font-size: 3vw;
    }
    .span{
        font-family: 'Lucida Sans' sans-serif;
        font-size: 4vw;
        font-weight: 500;
        color: #9198e5;
    }
    
    
    .pspan{
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
       

}