:root {
    --theme-color-1: #202020;
    --theme-color-2: #2a2a2a;
    --theme-color-3: #fcfcfc;
    --theme-color-4: #c9c9c9;
    --theme-color-5: #723fe7;
    --theme-color-6: #5b32b8;
}

* {
    box-sizing: border-box;
    scrollbar-color: var(--theme-color-5) transparent;
}

html,
body,
.content {
    height: 100%;
}

body {
    background-color: var(--theme-color-1);
    color: var(--theme-color-4);
}

.bg-bronxys {
    background-color: var(--theme-color-2);
}

.text-bronxys {
    color: var(--theme-color-3);
}

.text-primary {
    color: var(--theme-color-5);
}

.bg-primary {
    background-color: var(--theme-color-5);
}

.bg-primary-hover:hover {
    background-color: var(--theme-color-6);
}

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

.container-bronxys {
    width: 100%;
    max-width: 430px;
    padding: 15px;
}

header {
    position: fixed;
    top: 5px;
    left: 5px;
}

.center-input-code input {
    text-align: center;
}

@media (max-width: 750px) {
    header {
        display: none;
    }

    .content {
        align-items: start;
    }
}
