@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600&display=swap');

html {
    height: -webkit-fill-available;
}

body {
    background-color: #F0EEE9;
    color: #28282D;

    font-family: 'Cabin', sans-serif;
    line-height: normal;

    display: flex;

    min-height: 100vh;
    min-height: -webkit-fill-available;

    justify-content: center;
    align-items: center;

    margin: 0;
}

.container {
    text-align: center;

    display: flex;
    flex-direction: column;
}

.container & {
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: row;
    column-gap: .6rem;

    justify-content: center;
    align-items: center;
}

.logo .text {
    font-size: 6rem;
    font-weight: 600;
    font-variant-caps: small-caps;

    color: #6667AB;
}

.subtext {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 12rem;
}

.copy {
    color: #A9A9AB;
}