body{
    background-color: black;
    color: white;
}
#container{
    width: 50%;
    height: 50%;
    border: 2px white solid;
    margin: auto;
    margin-top: 10%;
    padding: 25px;
    border-radius: 10px;
}
h1{
    font-style: italic;
    text-align: center;
}
.qtop{
    font-size: 18px;
    font-weight: bold;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
}
#question{
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 10px;
}
.ans{
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    padding: 5px;
    margin-bottom: 8px;
    text-shadow: 0 0 4px ;
    border-radius: 10px;
}
.next_btn{
    margin-top: 10px;
    width: 20%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid red;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    color: black;
}
.next_btn:hover{
    background-color: red;
    color: white;
    text-shadow: 0 0 5px;
}
.correct{
    background-color: #45a049;
    color: white;
}
.wrong{
    background-color: red;
    color: white;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    color: #ff004f;
}
