@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;
}
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);
}

.card-header{
	height: 120px;
	display: grid !important;
	align-items: end !important;
}

.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-primary-600 {
	background-color: rgba(204, 157, 226, 1);
	color: white;
}
.btn-primary-600:hover {
	background-color: rgb(214, 157, 226);
	color: white;
}

.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);
	color: white;
}

.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;
}

#pauseOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeUpDown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeUpDown {
    animation: fadeUpDown .4s linear;
}

@media (orientation: landscape) {
	.landscape-col-6 {
		width: 50%;
		float: left;
	}
}

