Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/testing.codeskitter.site/two/
Upload File :
Current File : /home/users/unlimited/www/testing.codeskitter.site/two/global.css

:root {
    --primary-color: #fd6800;
    --secondary-color: #fc6800;
    --text-dark: #2a2a2a;
    --text-light: #585851;
    --text-white: #ffffff;
    --bg-light: #fafaff;
    --bg-dark: #4d4d4d;
    --bg-accent: #ffe5d3;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--text-light);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-light);
    max-width: 663px;
    margin: 0 auto 60px auto;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 16px;
    }
}