html {
    min-height: 100vh;
    background: #000;
    color: white;
    --main-color: #ff7f02;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--main-color);
}

.logo {
    height: 4rem;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    color: white;
    padding: 0.5rem 1rem;
    margin-top: 3rem;
    border-radius: 0.5rem;
}

.install {
    position: fixed;
    bottom: 2rem;
    text-align: center;
    padding: 0 0.5rem;
}

.install::after{
    content: '';
    position: absolute;
    left: calc(50% - 1rem);
    bottom: -1.5rem;
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1rem solid var(--main-color);
    clear: both;
}

.content {
    width: 100%;
}