@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');

*{
    box-sizing: border-box;
}

body{
    font-family: 'Nunito', sans-serif;
    background-image: linear-gradient(to right top, #00b09b, #24b98b, #4bc075, #70c65b, #96c93d);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin:0;
}
.question-container{
    background: #fff;
    border-radius: 10px;
    width: 600px;
    overflow: hidden;
    box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
}
.question-header{
    padding: 4rem;
}
h2{
    padding: 1rem;
    text-align: center;
    margin:0;
}
ul{
    list-style-type: none;
}
ul li{
    font-size: 1.2rem;
    margin:1rem 0;
}

ul li label{
    cursor: pointer;
}
button{
    background-image: linear-gradient(to left, #b2e686, #5ffbd6);
    color: #fff;
    border: none;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 1.3rem;
}