@import url('https://fonts.googleapis.com/css2?family=Ubuntu');

* {
    box-sizing: border-box;
    color: #a49bdd;
}

body {
    background-color: #0F0C24;
	/* color: #8478d1; */
    padding: 0 15px 15px 15px;
    font-size: 18px;
	font-family: Ubuntu, sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

a, a * { /* The second "a *" ensures the color is not lost when translating the page using Yandex Browser's built-in translator (and possibly other browsers). */
    color: #6d61c9;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

li {
    list-style: none;
    text-align: center;
}

hr {
    width: 30%;
    height: 2px;
    background-color: #6d61c9;
    border: none;
    margin: 5px 0;
}

input[type="text"] {
    /* text-align: center; */
    font-weight: bolder;
    font-size: 20px;
    margin: 8px 0;
    color: #a49bdd;
    background-color: #2c264f;
    border: none;
}

input[type="text"]::placeholder {
    color: #6c659b;
}

input[type="checkbox"]:checked {
    accent-color: #a49bdd;
}

label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    width: fit-content;
    margin: 2px auto;
}

button {
    transition: all 0.2s;
    background-color: #2c264f;
    color: #6d61c9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 6px;
}

button:disabled {
    background-color: #2c264f;
    color: #403b68;
    border: none;
    cursor: not-allowed;
}

.title {
    font-weight: bold;
    font-size: 48px;
}
.subtitle {
    font-weight: bold;
    font-size: 26px;
}