/* Import Rubik font variants */
@font-face {
    font-family: 'Rubik';
    src: url('fonts/rubik/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Rubik';
    src: url('fonts/rubik/Rubik-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Rubik';
    src: url('fonts/rubik/Rubik-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Rubik';
    src: url('fonts/rubik/Rubik-Light.ttf') format('truetype');
    font-weight: 300;
}

/* Global Styles */
body, html {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-data {
    padding: 120px 50px 20px 50px;
}

.logo {
    position: absolute;
    right: 0;
    height: 250px;
    opacity: 95%;
    z-index: 1;
}


/* Headline Large - H1 */
h1 {
    font-size: 44px; /* Font size: 24 */
    line-height: 1.25; /* Height: 30 / 24 */
    font-weight: 500; /* Font weight: w500 */
    letter-spacing: 0;
    color: black;
    margin-bottom: 24px;
    text-align: center;
}

/* Headline Medium - H2 */
h2 {
    font-size: 28px; /* Font size: 21 */
    line-height: 1.24; /* Height: 26 / 21 */
    font-weight: 500; /* Font weight: w500 */
    letter-spacing: 0.2px; /* Letter spacing: 0.2 */
    color: black;
    margin-bottom: 16px;
    margin-left: 16px;
}

/* Headline Small - H3 */
h3 {
    font-size: 22px; /* Font size: 18 */
    line-height: 1.33; /* Height: 24 / 18 */
    font-weight: 500; /* Default font weight */
    color: black;
    margin-bottom: 16px;
}

/* Body Text - P */
p, li {
    font-size: 16px; /* Font size: 14 */
    line-height: 1.43; /* Height: 20 / 14 */
    font-weight: 400; /* Default font weight */
    color: black;
    margin-bottom: 16px;
}

footer > p, footer a {
    color: white;
}

footer {
    margin-top: auto;
    background: #252525;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-evenly;
}

@media screen and (max-width: 600px) {
    footer {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap-reverse;
    }
    footer > p {
        padding: 0;
        margin: 4px;
    }


    h1 {
        font-size: 36px; /* Font size: 24 */
        margin-bottom: 20px;
    }

    h2 {
        font-size: 24px; /* Font size: 21 */
        margin-bottom: 12px;
        margin-left: 4px;
    }

    h3 {
        font-size: 16px; /* Font size: 18 */
        margin-bottom: 8px;
    }

    p, li {
        font-size: 14px; /* Font size: 14 */
        margin-bottom: 6px;
    }

    .logo {
        height: 100px;
    }

    .content-data {
        padding: 80px 20px 8px 20px;
    }
}