:root {
    --background: #ffffff;
    --brand-blue: #062d66;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--brand-blue);
    font-family: Arial, Helvetica, sans-serif;
}

.placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 8vw, 96px);
}

.brand-image {
    display: block;
    width: min(100%, 980px);
    height: auto;
}

@media (max-width: 640px) {
    .brand-image {
        width: min(100%, 430px);
    }
}
