@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&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');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root{
--main-brand-color: #f0bd94;
--primary-color: #b7b2ae;
--secondary-color: #000000;
--light-secondary-color: #3b3b3bce;
--text-color: #ffffff;
--secondary-text-color: #191818;
--border-color: #141414;
}
*{
margin: 0;
padding: 0;
}
body{
min-height: 100vh;
background-color: var(--primary-color);
font-family: 'Poppins', sans-sams serif;
font-size: 20px;
color: var(--text-color);
}
h1{
font-size: 100px;
line-height: 115%;
}

.subheading{
margin-top: 25px;
color: var(--secondary-color-text);
}
@media(max-width:800px){
h1{
font-size: 12vw;
text-align: center;
}
.subheading{
text-align: center;
}
body{
    font-size: 16px;
}
}
