@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;
}
.card {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

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

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

.bottom{
    position: absolute;
    bottom: 10%;
    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;
}

.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{
    height: 60px;
    font-size: 4vh;
}

.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-secondary{
    background-color: rgb(128, 82, 236);
    color: white;
}


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