html{
    background-color:rgb(234, 234, 234);
    overflow-x:hidden;
}
#container{
    margin-left:auto;
    margin-right:auto;
    background-color:white;
    border-radius:20px;
    box-shadow: 0 1.5rem 3rem #0003;
}

#createContainer{
    margin-left:auto;
    margin-right:auto;
    background-color:white;
    border-radius:20px;
    box-shadow: 0 1.5rem 3rem #0003;
}

.quizContainer{
    margin-bottom:50px;
    margin-left:3%;
    margin-right:3%;
    border-bottom: 1px solid lightgray;
    display:block;
    height:250px;
    border-radius:15px;
}

.quizTitle{
    font-size:32px;
    color:black;
    margin-right:25%;
    text-align:center;
    padding-top:20px;
}

.quizDesc{
    display: block;
    font-size:22px;
    margin-right:25%;
    text-align:center;
    position:relative;
    bottom:10px;
}

.quizImage{
    width:25%;
    height:60%;
    float:right;
    position:relative;
    bottom:120px;
    right:10px;
}

.quizButton{
    background-color:#4d5b9e;
    border: 1px solid black;
    border-radius: 10px;
    margin-left:22%;
    width:250px;
    height:50px;
    margin-bottom:30px;
    color:white;
}
.quizButton:hover{
    transform:translateY(-3px);
    box-shadow: 0 1.5rem 3rem #0003
}
.quizButton:active{
    background-color:#425199;
    transform:scale(97%)
}
.navBar{
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    height:80px;
    background-color:white;
}

.logo{
    height:60px;
    position:absolute;
    top: 10px;
    left:10px;
}

.navButton{
    float:right;
    margin-right:5vw;
    position:relative;
    bottom:10px;
    font-size:30px;
    color:black;
}

label, input{
    margin-left:100px;
}

.createQuizContent{
    display:inline;
}

#formDivider{
    padding-bottom:25px;
    margin-left:50px;
    margin-right:50px;
    border-bottom:1px solid lightgray;
    margin-bottom:50px;
}

#addNewQuestion{
    width:800px;
    margin-left:25px;
    background-color:rgb(186, 186, 186);
    border-radius:30px;
    transition-duration:0.2s;
}
#addNewQuestion:hover{
    background-color:rgb(139, 139, 139);
}

.questionContainer{
    width:750px;
    margin-left:50px;
    height:200px;
    border-bottom:1px solid lightgray;
    margin-bottom:50px;
}

.questionCreationInput{
    float:right;
    margin-right:50px;
    margin-bottom:15px;
    position:relative;
    bottom:40px;
    width:370px;
}
.questionContainer > label{
    margin-top:10px;
    display:block;
    margin-bottom:20px;
}
#log{
    text-align:center;
    color:rgb(255, 0, 0);
    font-size:20px;
    position:relative;
    bottom:20px;
}