/* ===========================
   WISHIVAH GLOBAL CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#09090B;
    color:#ffffff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

button{
    font-family:'Poppins',sans-serif;
    cursor:pointer;
}

.container,
.nav-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* Sections */

section{
    padding:90px 0;
}

/* Headings */

h1{
    font-size:64px;
    font-weight:800;
    line-height:1.2;
}

h2{
    font-size:42px;
    font-weight:700;
    text-align:center;
    margin-bottom:50px;
}

p{
    color:#b8b8b8;
    line-height:1.8;
}

/* Buttons */

.login-btn,
.signup-btn,
.hero-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:14px 30px;

    border-radius:50px;

    transition:.35s ease;

    font-weight:600;

}

.login-btn{

    background:#8B5CF6;
    color:#fff;

}

.login-btn:hover{

    background:#6D28D9;
    transform:translateY(-2px);

}

.signup-btn{

    border:2px solid #8B5CF6;
    color:#8B5CF6;

}

.signup-btn:hover{

    background:#8B5CF6;
    color:#fff;

}

/* Footer */

footer{

    border-top:1px solid rgba(255,255,255,.08);

    padding:60px 20px;

    text-align:center;

}

.footer-container h2{

    color:#8B5CF6;

    margin-bottom:10px;

}

.footer-container p{

    margin-top:10px;

}

