:root {
        --background-color: #fff;
        --text-color: #222;
    }

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;

    background: var(--background-color);
    color: var(--text-color);
}

.hero {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
}
.hero .title {
    display: block;
    font-family: 'Courier New', Courier, monospace;
}
.hero .hero-image {
    width: 42%;
    height: auto;
}
