*{
    margin:0;
    padding:0;
    font-family:sans-serif;
}
.banner{
    width:100%;
    height:100vh;
    background-image: url("pexels-alexander-kovalev-2847648.jpg");
    background-size: cover;
    background-position: center;
}

.circular-image {
    width: 120px; 
    height: 120px;
    border-radius: 50%; 
    overflow: hidden; 
    cursor:pointer;
  }
.circular-image img{
    width:100%;
    height:auto;
    display: block;
}
.navbar{
    width:85%;
    margin:auto;
    padding:35px 0;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li{
    list-style: none;
    display:inline-block;
    font-weight: bold;
    margin:0 20px;
    position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color:black;
    text-transform: uppercase;
}
.navbar ul li::after{
    content:'';
    height:3px;
    width:0;
    background:#014397;
    position: absolute;
    left:0;
    bottom:-10px;
    transition:0.5s;
}
.navbar ul li:hover::after{
    width:100%;
}
.quiz{
    width:800px;
    height:400px;
    margin:0px auto;
    border:2px solid black;
    border-radius: 25px;
    position:relative;
}
.quiz h3{
    top:5%;
    left:70%;
    position:absolute;
}
.plate{
    position:absolute;
    left:10%;
    top:8%;
    height:350px;
    width:400px;
    }
.quiz h4{
    position:absolute;
    top:45%;
    left:67%;
}
.result {
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.reload-button{
    width:200px;
    padding:15px 0px;
    text-align: center;
    margin:20px 10px;
    border-radius: 25px;
    font-weight:bold;
    border:2px solid #014397;
    background: transparent;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}
.reload-button span{
    background: #014397;
    height:100%;
    width:0;
    border-radius:25px;
    position:absolute;
    left:0;
    bottom:0;
    z-index: -1;
    transition: 0.5s;
}
button:hover span{
    width:100%;
}
button:hover{
    border:none;
}