/* Apply a modern font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
}

.container {
    text-align: center;
    max-width: 80%;
}

.graphic {
    max-width: 100%;
    max-height: 50vh; /* Set max height to 50% of the viewport height */
    height: auto;
}

.headline {
    font-size: 3rem;
    color: #333;
    margin-top: 20px;
}