:root{
    --main-brand-color: rgb(30, 107, 7);
    --primary-color: #15171c;
    --secondary-color: #bbbdbe;
    --light-secondary-color: #e6e8eb;
    --text-color: white;
    --secondary-text-color: #dadce0;
}
*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: Verdana, Helvetica, Arial, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: var(--text-color);
}
h1{
    font-size: 60px;
    line-height: 115%;
}
.subhaeding{
    margin-top: 25px;
    color: var(--secondary-text-color)
}
.footer{
    margin-top: 25px;
    color: var(--secondary-text-color)
}
@media(max-width: 800px){
    h1{
        font-size: 12vw;
        text-align: center;
    }
    .subhaeding{
        text-align: center;
    }
    
}