/* Kauai red dirt inspired background */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background-color: #8b3a2e; /* red dirt tone */
    background-image: radial-gradient(
        circle at center,
        #9c4a3a 0%,
        #7a2f25 70%
    );
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo {
    width: 50%;
    max-width: 800px;
    height: auto;
}
