*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex > div {
    flex: 1 0 50%;
    text-align: center;
    color: #ed1c24;;
}

h1 {
    margin-top: 0;
    font-size: 3em;
    text-align: center;
    width: 100%;
    white-space: normal;
}

a {
    display: inline-block;
    padding: 0 2em;
    color: #ed1c24;
    text-decoration: none;
    font-weight: bold;
    font-size: 2em;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 860px) {
    .flex {
        flex-direction: column;
    }
}