@font-face {
	font-family: 'Rubik SemiBold';
	src: url('../fonts/Rubik-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Rubik Regular';
	src: url('../fonts/Rubik-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Noto Color Emoji Regular';
	src: url('../fonts/NotoColorEmoji-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

html,
body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100vh;
	margin: 0;
	font-family: 'Rubik Regular', sans-serif;
	font-size: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2 {
	font-family: 'Rubik SemiBold', sans-serif;
	font-size: 32px;
	line-height: 34px;
}

.card {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.btn {
	height: 60px;
	font-size: 4vh;
}

.modal-title {
	margin: 0 auto;
	color: rgba(22, 0, 151, 1);
}

.modal-text {
	font-size: 38px;
	color: rgba(62, 62, 62, 1);
	text-align: center;
	padding: 2%;
}

.modal-header {
	background-color: rgba(238, 239, 251, 1);
}

.card-header,
.card-footer {
	background-color: rgba(208, 214, 246, 1);
	height: 110px;
}

.card-title {
	color: rgba(22, 0, 151, 1);
	font-size: 48px;
	font-weight: 700;
	line-height: 34px;
}

#time {
	color: rgba(22, 0, 151, 1);
	font-size: 32px;
	font-weight: 700;
	line-height: 34px;
}

.card-body {
	background-color: rgb(220, 224, 247);
}

.modal-body,
.modal-under-body {
	background-color: rgba(255, 255, 255, 1);
}

.btn-primary,
.btn-primary:hover {
	background-color: rgb(22, 0, 151);
	border-color: rgb(199, 206, 245) !important;
}

.btn-outline-primary {
	border-color: rgb(22, 0, 151) !important;
	color: rgb(22, 0, 151);
}

.btn-outline-primary:hover {
	background-color: rgb(22, 0, 151) !important;
}

.btn-success {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
		linear-gradient(0deg, #00AE3B, #00AE3B),
		linear-gradient(0deg, #ACD3B9, #ACD3B9);
	border: 10px solid rgba(172, 211, 185, 1);
	height: 90px;
	font-size: 4vh;
}

.btn-danger {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
		linear-gradient(0deg, #981d29, #981d29),
		linear-gradient(0deg, #b58186, #b58186);
	border: 10px solid rgba(172, 211, 185, 1);
	height: 90px;
	font-size: 4vh;
}



.btn-secondary {
	background-color: rgb(128, 82, 236);
	color: white;
}

.holder {
	position: relative;
	font-size: 2em;
	width: 50px;
	height: 50px;
}

.top {
	position: absolute;
	top: 0;
	width: 100%;
}

.bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
}

.ph {
	position: relative;
	pointer-events: none;
	margin: 28px !important;
}

/* #region Game stuff */
.color-option {
	position: relative;
	display: inline-block;
	width: 8vh;
	height: 8vh;
}

.color-option input[type="checkbox"] {
	display: none;
}

.color-option label {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s, filter 0.3s;
}

.color-option label::after {
	content: "✓";
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 5vh;
	color: white;
}

.color-option input[type="checkbox"]+label {
	filter: brightness(85%);
}

.color-option input[type="checkbox"]:checked+label {
	filter: brightness(100%);
}

.color-option input[type="checkbox"]:checked+label::after {
	display: block;
}

p {
	font-family: inherit;
}

button {
	font-family: inherit;
}

/* #endregion */