* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
}

.container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "ROND" 0;
}


.headline {
    font-size: 40px;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 24px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.headline-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.headline img {
    height: 40px;
    width: auto;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 14px;
    color: #808080;
    text-decoration: underline;
}

.links a:hover {
    color: #555555;
}

@media (max-width: 768px) {
    .container {
        bottom: 15px;
        left: 15px;
    }

    .headline {
        font-size: 32px;
    }

    .headline img {
        height: 32px;
    }

    .links a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        bottom: 10px;
        left: 10px;
    }

    .headline {
        font-size: 26px;
    }

    .headline img {
        height: 26px;
    }

    .links a {
        font-size: 12px;
    }
}
