 body {
    font-family: 'Epilogue', sans-serif;
    overflow-x: hidden;
 }

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.margin-top {
    margin-top: 100px;
}

.margin-top-sm {
    margin-top:10px;
}

.margin-top-md {
    margin-top: 50px;
}

.margin-bottom {
    margin-bottom: 50px;
}

.modal-open .modal {
    backdrop-filter: blur(7px);
}

.modal-header, .modal-footer {
    border-color: black;
    border-radius: 0;
}

#keyboard {
    bottom: 0px;
    z-index: 99999;
    position: absolute;
    display: block;
    max-width: 60%;
    margin: 0px 20%;
}

.modal-content {
    border-radius: 0;
    border: 1px solid black;
}

input.form-control {
    border: 1px solid black;
    border-radius: 0;
}

.close {
    opacity: 0.1;
}

 h1 {
    font-weight: 700;
 }

 #questionCounter {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.2em;
 }

 .modal-title {
    line-height: 1.2;
    font-weight: bold;
 }

 .form-check-label {
    font-size: 0.75em;
 }

 #thankyou {
    margin-bottom:200px;
 }

 .summary-item {
            margin-bottom: 20px;
        }

        #summaryContainer {
            margin-top: 50px;
            margin-bottom: 100px;
        }

        @keyframes slowRotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes slowRotate-2 {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(10deg);
            }
        }

        @keyframes slowMove {
            from {
                transform: translateX(0px)
            }
            to {
                transform: translateX(1000px)
            }
        }

#animation-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 999999999;
    pointer-events: none;
}

#hullam {
    position: absolute;
    z-index: 99999999;
    width: 600px;
    bottom: -50px;
    right: -240px;
    animation: slowRotate 480s linear infinite;  /* This will rotate the element in 30 seconds. Adjust the duration as needed. */

}

#szajensz-szeansz-logo {
    position: absolute;
    z-index: 99999999;
    height: 100px;
    top: 30px;
    right:40px;
    animation: slowRotate 30s linear infinite;
}

#hullam-2 {
    display: none;
    position: absolute;
    z-index: 99999999;
    height: 350px;
    bottom: -250px;
    left: -120px;
    animation: slowRotate-2 30s linear infinite;
    /* rotate: 90deg; */

}

#logo-big {
    position: absolute;
    z-index: 99999999;
    width: 600px;
    bottom: 10px;
    left: 0;
    animation: slowMove 180s linear infinite;  /* This will rotate the element in 30 seconds. Adjust the duration as needed. */
    
}

#kapu {
    position: fixed;
    width: 190px;
    right: 120px;
    bottom: 220px;
}

#plusz {
    position: fixed;
    width: 60px;
    left: 180px;
    top: 40px;
}

#feedback {
    margin-bottom: 175px;
}

@keyframes slideOut {
    100% {
        transform: translateX(-100%);
    }
}


#intro {
    position: fixed;
    z-index: 999999;
    background: yellow;
    height: 100%;
    width: 100%;
    transform: translateX(0);
    overflow-x: hidden;
    overflow-y: scroll;
}

#intro.slide-out {
    animation: slideOut .5s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;

}

.btn {
    margin: 0 10px;
}

.btn-light {
    border: 1px solid black;
}

.btn-adapter {
    background-color: yellow;
    color: black;
    border-color: black;
    border-radius: 30px;
}

.btn-lg {
    padding: 10px 30px;
}

.btn-xl {
    font-size: 2em;
    font-weight: bold;
    padding: 1em 2em;
    border-radius: 100px;
}

@keyframes cursorBlink {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes btnGrowEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-grow-effect {
    animation: btnGrowEffect 0.5s forwards;
}


#cursor {
    display: none;
    animation: cursorBlink 0.6s ease-in-out infinite alternate;
    height: 20px;
    position: absolute;
    border-left: 10px solid black;
}

.bar-container {
    width: 100%;
    background-color: #f1f1f1;
    padding: 2px;
    margin: 10px 0;
}

.bar {
    height: 30px;
    background-color: #fff714;
    width: 0%; /* Initial width */
    position: relative;
    transition: width 1s ease-in; /* Animation for bar growth */
}

.bar-label {
    position: absolute;
    left: 10px;
    line-height: 30px;
    color: black;
    min-width: 200px;
    text-align: left;
}

.overlay {
    position: fixed;
    max-width: 170px;
    left: -140px;
    top: 280px;
    z-index: 99;
}

.right-overlay {
    right: 70px;
    left: inherit;
    top: 130px;
}

.overlay img {
    width: auto;
    position: relative;
    display: block;
    width: 390px;
}

.fixed-bottom {
    padding: 20px;
    border-top: 1px solid black;
    background: white;
}

.btn-inactive {
    opacity: 0.2;
}

.logo {
    height: 75px;
}

.timer-line {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background-color: #fff714;
    transition: width 60s linear;
    z-index: 9999;
}

@media (min-width: 360px) and (max-width: 897px) and (orientation: landscape) {
    #animation-wrapper {
        display: none;
    }
  }

@media (min-width: 800px) and (max-width: 1350px) {
    .overlay {
        display: none;
    }
    #start {
        margin-top: 60px
    }
    
}

@media (min-width: 1350px) and (max-width: 1921px) {

    #start {
        margin-top: 30px
    }
    
}



@media (min-width: 360px) and (max-width: 844px){
    #animation-wrapper {
        display: none;
    }
    .btn-xl {
        font-size: 1em;
    }

    h1 {
        font-size: 2em;
    }

    #question {
        margin-top: 10px;
    }

    #feedback {
        margin-bottom: 150px;
    }

    .logo {
        height: 60px;
        width: 100px;
        margin-left: 10px;
    }

    .overlay {
        display:none;
    }
    .margin-bottom {
        margin-bottom: 30px;
    }
    #summaryContainer {
        margin-top: 20px;
        margin-bottom: 100px;
    }
    .margin-top-md {
        margin-top: 10px;
    }
  }

@media (min-width: 481px) and (max-width: 767px) {
    #animation-wrapper {
        display: none;
    }
    h1 {
        font-size: 1.5em;
    }

    #question {
        margin-top: 10px;
    }

    #feedback {
        margin-bottom: 150px;
    }

    .logo {
        height: 60px;
        width: 100px;
        margin-left: 10px;
    }

    .overlay {
        display:none;
    }
}

@media (min-width: 820px) and (max-width: 1180px){
    h1 {
        font-size: 3em;
    }

    .margin-top-md {
        margin-top: 50px;
    }

    #question {
        margin-top: 10px;
    }

    #feedback {
        margin-bottom: 150px;
        font-size: 1.5em;
    }

    .logo {
        height: 75px;
        width: 150px;
        margin-left: 20px;
    }

    .overlay {
        display:none;
    }
    .margin-bottom {
        margin-bottom: 30px;
    }
    #summaryContainer {
        margin-top: 20px;
        margin-bottom: 100px;
    }
    #cursor {
        display: none;
        animation: cursorBlink 0.6s ease-in-out infinite alternate;
        height: 20px;
        margin-top: 7px;
        position: absolute;
        border-left: 10px solid black;
    }
  }

