@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');
:root{
    --primary-color: rgb(165, 31, 31);
    --main-brand-color: rgb(14, 85, 4);
    --secondary-color: rgb(238, 213, 161);
    --light-secondary-color: rgb(240, 208, 139);
    --text-color: black;
    --secondary-text-color: rgb(204, 141, 6);
}
*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: 'Gochi Hand' , 'sans-serif';
    font-size: 20px;
    color: var(--text-color);
}
h1{
    font-size: 100px;
    line-height: 115%;
    color: var(--main-brand-color);
}
h3{
    font-size: 38px;
}
html{
    scroll-behavior: smooth;
}
.subheading{
    margin-top: 25px;
    color: var(--secondary-text-color);
}
@media(max-width: 800px){
    h1{
        font-size: 12vw;
        text-align: center;
    }
    .subheading{
        text-align: center; 
    }
}