@import url('https://fonts.googleapis.com/css?family=Rubik');

:root {
    --primary: #1a1a1a;
    --primaryLight: #cbcbcf;
    --secondary: #cbcbcf;
    --secondaryLight: #cbcbcf;
    --headerColor: #1a1a1a;
    --bodyTextColor: #111564;
    --bodyTextColorWhite: #fafbfc;
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif; /* Lisätty varasuorituskyky */
    background-color: var(--bodyTextColorWhite); /* Taustaväri */
}

*, *:before, *:after {
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.4em; /* Lisää tilaa tekstin ympärille */
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem; /* Lisää tilaa alapuolelle */
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Lisää varjo */
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.4em; /* Lisää riviväliä */
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Lisää varjo */
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.7em; /* Lisää riviväliä */
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
    padding: 0.5rem 0; /* Lisää tilaa ylle ja alle */
    background-color: rgba(255, 186, 67, 0.1); /* Taustaväri, joka parantaa luettavuutta */
    border-radius: 4px; /* Kulmien pyöristys */
}
