html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0d0d0a;
    color: #e4ddd1;
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;

    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    color: #e4ddd1;
    text-decoration: none;
}

.site {
    max-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    padding-block: 2rem;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo {
    max-height: 60vh; /* adjust as needed to leave room for text/link */
    width: auto;
    height: auto;
    max-width: 100%;
}

