body {
    --grey: #343538;
    --primary: #f4da90;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    gap: 20px;
    .logo {
        margin-top: 30px;
        img {
            height: 150px;
        }
    }
    .heading {
        font-size: 30px;
        color: var(--grey);
        text-align: center;
    }
    .devices {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        max-width: 400px;
        width: 100%;
        .device {
            padding: 16px 32px;
            width: 100%;
            background: var(--primary);
            border-radius: 10px;
            cursor: pointer;
            font-size: 24px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: var(--grey);
            letter-spacing: 1px;
            box-sizing: border-box;
            .device-logo {
                order: 1;
                img {
                    height: 50px;
                }
            }
        }
    }
}

/* Light mode */
@media (prefers-color-scheme: light) {
    body {
        background-color: white;
        .heading {
            color: var(--grey);
        }
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        .heading {
            color: white;
        }
    }
}