@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --main-brand-color: rgb(84, 60, 204);
    --primary-color: rgb(28, 28, 28);
    --secondary-color: rgb(33, 32, 41);
    --light-secondary-color: rgb(59, 59, 70);
    --light-primary-color: rgb(49, 48, 49);
    --text-color: rgb(233, 237, 222);
    --secondary-text-color: rgb(197, 199, 191);
}
*{
    margin: 0; 
    padding: 0;
}
body{
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family:'Poppins', sans-serif;
    font-size: 20px;
    color: var(--text-color);
}
@keyframes appear {
    from {
        opacity: 0.5;
        scale: 0.7;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}
.animation_scroll {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
h1{
    font-size: 80px;
    line-height: 115%;
}
.subheading{
    margin-top: 25px;
    color: var(--secondary-text-color);
}
@media(max-width: 800px){
    h1{
        font-size: 9vw;
        text-align: center;
    }
    .subheading{
        font-size: 3vw;
        text-align: center;
    }
}