*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    width: 100%;
    height: 100px;
    background: rgb(32,23,190);
    background: linear-gradient(90deg, rgba(32,23,190,1) 0%, rgba(9,9,121,1) 24%, rgba(187,44,158,1) 72%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: antiquewhite;
    flex-wrap: wrap;
    font-weight: 50;
    text-shadow: 0 0 20px black;
    color: white;
    font-family: 'Lobster', cursive;
}
.middle{
    margin-top:50px ;
    width: 80%;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 16%, rgba(253,29,223,1) 100%, rgba(252,176,69,1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 20px black;
}
.q{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.btn-container{
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.btn{
    height: 40px;
}
.overlay{
 position: absolute;
 width: 100%;
 height: 100%;
 background-color:black;
 opacity: 0.7;
 z-index: 4;
}
.window_modal{
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 39%, rgba(108,253,29,1) 100%, rgba(186,135,62,1) 100%);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    box-shadow: -3px 3px 33px 3px rgba(0,0,0,1);
    -webkit-box-shadow: -3px 3px 33px 3px rgba(0,0,0,1);
    -moz-box-shadow: -3px 3px 33px 3px rgba(0,0,0,1);
    border-radius: 20px;
    z-index: 5;
}
 .hidden{
    display: none;
}
button{
position: relative;
}
.window_close{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: red;
    font-size: 25px;
    border: none;
    outline: none;
    background-color: green;
    color: white;
}
.window_close:hover{
    transition: 0.5s;
    background-color:blue;
}
.score{
    text-align: center;
    margin-top: 30%;
}
.yourscore{
    margin-top: 10%;
    text-align: center;
}
.party{
    margin-top: 10%;
    text-align: center;
}