:root {
    --black: #141414;
    --gray: #6e6e6e;
    --light-gray: #e1e1e1;
    --success: #1a6c31;
    --white: #FFF;

    --side-container-width: 442px;

    --gap-xlarge: 56px;
    --gap-large: 40px;
    --gap-medium: 24px;
    --gap-small: 16px;
    --gap-xsmall: 8px;
    --gap-xxsmall: 4px;

    --font-size-label: 12px;
    --font-size-body: 16px;
    --font-size-text: 20px;
    --font-size-title-medium: 24px;
    --font-size-title-large: 32px;

    --font-line-height-large: 40px;
    --font-line-height-medium: 32px;
    --font-line-height-small: 24px;
}

@font-face {
    font-family: "Volvo Novum Light";
    src: url("https://static-ecm.volvopenta.com/vp-ecm-b2c-core-layout/css/fonts/Volvo-Novum-Light.woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Volvo Novum Light";
    src: url("https://static-ecm.volvopenta.com/vp-ecm-b2c-core-layout/css/fonts/Volvo-Novum-Light.woff2");
}

html {
    height: 100vh;
    width: 100vw;
}

body {
    width: 100%;
    height: 100%;
    color: var(--gray);
    background-color: var(--white);
}

ul {
    list-style-type: none;
}


.fontBold {
    color: var(--black);
    font-weight: bold;
}

.hrefButton {
    cursor: pointer;
}

p>strong,
p>b>span {
    font-size: var(--font-size-title-medium);
}

p>span {
    font-size: var(--font-size-text);
    font-weight: 300;
    color: var(--gray);
}

p>span>a>b>span,
p>span>a>span {
    font-size: var(--font-size-text);
    font-weight: 300;
}

.vp-header>p {
    font-size: var(--font-size-title-large);
    font-weight: 300;
    color: var(--black);
    margin-left: 50px;
    margin-top: 50px;
}

.header {
    text-align: center;
    padding: 20px;
}

.vp-header::before {
    padding: 20px;
    justify-content: center;
    display: flex;
    content: url("https://static-ecm.volvopenta.com/vp-ecm-b2c-core-layout/images/volvoPenta.svg");
}

@media only screen and (max-width: 600px) {
    .vp-header::before {
        content: url("https://static-ecm.volvopenta.com/vp-ecm-b2c-core-layout/images/volvoPentaMobile.svg");
    }
}