* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: rgb(137, 255, 239);
}

.logo-login {
    width: auto;
    max-width: 300px;
    height: auto;
    padding: 15px;
    margin-left: 95px;
    /* margin-bottom: 10px; */
}

.logo {
    width: auto;
    max-width: 300px;
    height: auto;
    padding: 15px;
    margin-left: 65px;
    /* margin-bottom: 10px; */
}

.logo2 {
    width: auto;
    max-width: 250px;
    height: auto;
    padding: 15px;
    margin-bottom: -20px;
    margin-left: 95px;
}


.quiz {
    width: auto;
    max-width: 900px;
    height: 100%;
    /* background: #FFFFFF; */
    /* border-radius: 15px; */
    /* text-align: center; */
    /* padding-top: 100px; */
    /* box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); */
}

.login-text {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    /* position: relative; */
    display: block;
    outline: none;
    width: 500px;
    /* height: 50px; */
    font-size: 44px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    top: 250px;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 30px;
    color: #333;
    border-radius: 20px;
    -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}

.name-group {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    /* position: relative; */
    display: block;
    outline: none;
    width: 400px;
    /* height: 50px; */
    font-size: 44px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    top: 250px;
    margin: 0 auto;
    padding: 10px;
    color: #333;
    border-radius: 20px;
    -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}

::-webkit-input-placeholder {
    color: #949191;
}

:-moz-placeholder {
    color: #949191;
}

::-moz-placeholder {
    color: #949191;
}

:-ms-input-placeholder {
    color: #949191;
}

/* 
body {
    background-size: auto;
    text-align: center;
    padding-top: 100px;
} */

.btn-md {
    width: 500px;
    height: 80px;
    border-radius: 20px;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-circle.btn-xl {
    width: 450px;
    height: 450px;
    /* padding: 10px 16px; */
    margin: 20px auto;
    border-radius: 300px;
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.judge {
    width: auto;
    max-width: 900px;
    height: 100%;
    /* background: red; */
    /* box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); */
}

.name-group-display {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    /* position: relative; */
    display: block;
    outline: none;
    width: 400px;
    /* height: 50px; */
    font-size: 44px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    top: 250px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 10px;
    color: #333;
    border-radius: 20px;
    -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 500px) {
    .quiz {
        width: auto;
        height: 100%;
    }

    .name-group,
    .name-group-display,
    .login-text {
        width: 290px;
        font-size: 32px;
    }

    .name-group-display {
        margin-top: 20px;
    }

    .logo,
    .logo2,
    .logo-login {
        width: auto;
        max-width: 230px;
        height: auto;
        margin-left: 35px;
    }

    .btn-circle.btn-xl {
        width: 300px;
        height: 300px;
        border-radius: 150px;
        font-size: 38px;
    }

    .btn-md {
        width: 300px;
        height: auto;
        font-size: 28px;
    }
}

@media (max-width: 300px) {
    .quiz {
        width: auto;
        height: 100%;
        text-align: center;
    }

    .name-group,
    .name-group-display,
    .login-text {
        width: 200px;
        font-size: 17px;
    }

    .name-group-display {
        margin-top: 10px;
    }

    .logo,
    .logo2,
    .logo-login {
        width: auto;
        max-width: 180px;
        height: auto;
        margin-bottom: 0px;
        margin-left: 0;
    }

    .btn-circle.btn-xl {
        width: 180px;
        height: 180px;
        border-radius: 100px;
        font-size: 25px;
    }

    .btn-md {
        width: 180px;
        height: auto;
        font-size: 20px;
    }
}