*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body{
    background-color: #FFEB00;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
}

.head{
    background-color: black;
    color: #FFEB00;
    -webkit-text-stroke: 0.9px white;
    text-align: center;
    width: 100%;
    padding: 30px 0;
    font-size: 4vw;
    position: fixed;
    top: 0;
    left: 0;

}

.box{
    background: black;
    width : 30vw ;
    height: 30vh;
    
    
    text-align: center;
    min-width: 150px;
    min-height: 60px;
    border-radius: 10px;

}
#boxhead{
    color: #FFEB00;
    -webkit-text-stroke: 0.9px white;
    font-size: 35px;
    padding: 5px;

}
.feddbackbtn{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    justify-content: center;
    align-items: center;

}
.feddbackbtn button{
    padding: 10px 15px;
    margin: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    color:black;
    background-color:#FFEB00;
}
#sub{
    width: 20vw;
    padding: 14px;
    cursor: pointer;
    border-radius: 10px;

    font-size: 25px;
}
.feddbackbtn button.selected {
     background-color: cyan !important;
    transform: scale(1.1);
    transition: 0.3s;
}