
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body{
            height: 100%;
            width: 100%;
        }

        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #132457;
            overflow-x: hidden;
        }

        .main-container{
            padding: 2rem;
            background-color: #f1f1f1;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            border-radius: 8px;
            max-width: 420px;
            width: 90%;
        }

        .screen{
            display: none;
        }

        .inp-container{
            margin-bottom: 10px;
        }

        #nameInp{
            width: 100%;
            font-size: 16px;
            border-radius: 6px;
            padding: 8px;
            border: 1px solid #ccc;
        }

        #nameInp:focus{
            outline: none;
        }

        .btns-container{
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn{
            padding: 6px 16px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
        }

        .btn:hover{
            background-color: #12121727;
        }

        .submit-btn{
            margin-top: 10px;
        }

        #submit{
            width: 100%;
            padding: 8px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
        }

        #submit:hover{
            background-color: #12121727;
        }

        .quizHeader {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .score-info{
            text-align: right;
            margin-top: 10px;
        }

        .question{
            text-align: center;
            margin-top: 20px;
            font-size: 18px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
        }

        .line{
            margin-top: 10px;
            width: 100%;
            height: 4px;
            background-color: black;
            border-radius: 5px;
        }

        .buttons{
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 10px;
            gap: 10px;
        }

        .buttons button{
            padding: 10px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
        }

        .progress{
            height: 10px;
            width: 100%;
            margin-top: 10px;
            background-color: #30313561;
            border-radius: 7px;
        }

        .progress-bar {
            height: 10px;
            width: 0%;
            background-color: #132457;
            border-radius: 7px;
            transition: width 0.3s ease;
        }

        .result-screen{
            margin-top: 20px;
        }

        .result-info{
            border: 2px solid black;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }

        .message{
            border: 2px solid black;
            margin-top: 10px;
            border-radius: 8px;
            padding: 10px;
        }

        .result-screen-btn{
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

