@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&family=Roboto+Slab:wght@100..900&display=swap');

:root {
    --main-brand-color: #e34529;
    --primary-color: #15171c;
    --secondary-color: #292929;
    --light-secondary-color: #2E3744;
    --text-color: white;
    --secondary-text-color: #f8fc3b;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-color: var(--primary-color);
    font-family: '', sans-serif;
    font-size: 20px;
    color: var(--text-color);
}

h1 {
    font-size: 100px;
    line-height: 115%;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--light-secondary-color);
}

/* Responsive Design */
@media (max-width: 800px) {

    h1 {
        font-size: 12vw;
        text-align: center;
    }

    .subheading {
        text-align: center;
    }

    .services {
        flex-direction: column; /* Stack services vertically */
        align-items: center; /* Center align */
    }

    .service {
        width: 90%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Space between services */
    }
}


