/* Center the content */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Use Google Fonts to style the text */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-align: center;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
}
img {
    width: 100px;
    height: 100px;
}
