* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 24px;
    position: relative;
}

@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

.container {
    text-align: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.contact {
    color: #c8c8c8;
    font-size: 14px;
}

.contact a {
    color: #c8c8c8;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 24px;
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    .contact {
        font-size: 12px;
    }

    footer {
        bottom: 16px;
    }
}
