@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    height: 100vh;
    width:100vh;
    /*background-image: url('/images/quizbg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;*/
}

.background-container {
    position: fixed; /* Keeps it fixed as a background */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Ensures no scroll bars */
    z-index: -1; /* Places it behind other content */
}

.background-image {
    width: 100%;
    height: 100%;
}

#startBtn {
    font-family: 'Fredoka One', sans-serif; /* Or any other font you prefer */
    font-size: 1.5em;
    object-fit:cover;
}

.fun-link{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #ff8c90;
    text-decoration:none;
}

.signin-container {
    background: rgba(245, 245, 245, 0.85);
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Frosted glass effect for better readability */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
}