@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
:root{
    --main-brand-color:rgb(109, 107, 104);
    --primary-color:rgb(161, 157, 153);
    --secondary-color:rgba(190, 251, 248, 0.578);
    --light-secondary-color:rgb(109, 107, 104);
    --text-color: rgba(190, 251, 248, 0.578);
    --secondary-text-color:rgb(109, 107, 104); 
    
}
*{
   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);
}
h1{
    font-size: 100px;
    line-height: 115%;   
}
h3{
    font-size: 38px;
}
.subheading{
   margin-top: 25px;
   color: var(--secondary-text-color); 
}
@media(max-width: 800px){
    h1{
        font-size: 12vw;
        text-align: center;
    }
    .subheading{
        text-align: center;
    }
    body{
        font-size: 16px;
    }
     }