@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

html,
body {
    display: grid;
    height: 100%;
    place-items: center;
    background: #ecf0f1;
}

.container {
    width: 400px;
    background: inherit;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.115);
    border-radius: 7px;
    padding: 20px;
}

.container>h2 {
    color: #be2edd;
    font-size: 1rem;
    text-align: center;
}

.container hr {
    height: 2px;
    margin: 15px 0px;
}

.wrapper h2 {
    margin-bottom: 22px;
    margin-left: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    background-color: #f9f9f9;
}

/* Hide the default radio button */
.answers {
    display: none;
}

label {
    width: 100%;
    height: 100%;
    padding: 15px;
    padding-left: 20px;
    font-size: 12px;
    transition: .1s;
    cursor: pointer;
}

.row label:hover {
    background: #dff9fb;
}

/* When the radio button is checked, style the .row */
.answers:checked+label {
    background-color: #d6fbfd;
}


button {
    border: 0;
    outline: none;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    background: #be2edd;
    transition: background .3s;
}

.thanks {
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    margin: 15px 0px;
}

.score {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.wrapper a {
    text-decoration: none;
    background: #be2edd;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-self: center;
    justify-content: center;
    margin-top: 20px;
    transition: background .3s;
}

button:hover,
a:hover {
    background: #bd2eddea;
}