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

body{
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
}
.hero{
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    animation: heroshow 1s ease-in-out;
}
.hero h1{
    font-size : 64px;
    margin-bottom: 15px;
    animation: h1move 2s ease-in-out;
}
.hero h1 span{
    color: rgb(226, 132, 226);
}
.hero p{
    font-size: 19px;
    color: #b3b3b3;
    margin-bottom: 30px;

}
.scrollhint{
    font-size: 16px;
    color: #b3b3b3;
    margin-top: 20px;
    text-decoration: underline;
    animation: showup 1s ease ;
}
.getstarted{
    background-color: rgb(226, 132, 226);
    color: white;
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}
.getstarted:hover{
    background-color: rgb(186, 92, 186);
}
.navibar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:16px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color:#202020;
    animation: navdrop 2s ease-in-out;
}
.nav-links a:hover{
    color: rgb(226, 132, 226);
}
.navbtn{
    background-color: rgb(226,132,236);
    color: white;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}
.navbtn:hover{
    background-color: rgb(139, 65, 139);
    color: white;

}
.nav-links{
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}
.nav-links a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}
.brand{
    font-size: 24px;
    font-weight: bold;
    color: rgb(255, 255, 255);
}
.brand span{
    color: rgb(226, 132, 226);
}

.feature{
    background-color: #202020;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #696666;
    gap: 30px;
    padding: 30px 40px;
    
}
.feature h2{
    font-size: 24px;
    margin-bottom: 15px;
    
}
.feature p{
    font-size: 16px;
    color: #b3b3b3;
}
.feature:hover{
    border-color: purple;
    transition: border-color 0.3s ease-in-out;
}
.feature h3{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.about{
    display: flex;
    flex-direction: column;
    padding : 20px 40px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #696666; 
    margin-bottom: 30px;
    background-color: #202020;
}
.about:hover{
    border-color: purple;
    transition: border-color 0.3s ease-in-out;
}
.about h2{
    font-size: 24px;
    margin-bottom: 15px;
    text-decoration: underline;
}
.about h3{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.about p{
    font-size: 16px;
    color: #b3b3b3;
}
.aboutpoints{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex: 1;
    margin-top: 30px;

}
.aboutpoints h4{
    margin-bottom: 10px; 
}
.item{padding: 25px 0;
    border-bottom: 1px solid #696666;
}
.item:last-child {
    border-bottom: none;
}
.getstartedsection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #202020;
    border-radius: 10px;
    text-align: center;
}
.getstartedsection h2{
    font-size: 24px;
    margin-bottom: 15px;
    text-decoration: underline;
}
.getstartedsection p{
    margin-bottom: 20px;
}
.navwrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}
.reveal{
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-in-out;
}
.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navibar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    .nav-links a {
        margin-bottom: 10px;
    }
}
@keyframes heroshow {
    from{
        opacity: 0;
    }
    to{
        opacity:1
    }
}
@keyframes h1move{
    from{
        transform: translateX(-50px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes navdrop{
    from{
        transform: translateY(-50px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity:1;
    }
}
@keyframes showup{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
    