@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
body {
    font-family: "Open Sans", system-ui, -apple-system, sans-serif;
    color: #fff;
    background-color: #1e2b2f;
}
.container {
    display: grid;
    place-items: center;
    height: 100vh;
}
.container img {
    max-width: 100%;
    max-height: 100%;
}
.content {
    text-align: center;
    max-width: 500px;
    margin-inline: auto;
    padding-inline: 20px;
}
h1 {
    margin-block: 20px;
    font-weight: 700;
}