body {
    background: url('../images/background/poll.jpg');
}

main {
    margin: 8rem;
    padding: 1rem;
    background: var(--clr-leeds-white);
    place-items: center;
    display: grid;


}

fieldset {
    margin: 50px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    border: none;
}


input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #ffd62e;
    margin-right: 10px;
    background-color: transparent;
    position: relative;
    top: 6px;
}

input[type="text"] {

    border: 2px solid #ffd62e;
    margin-left: 10px;
    background-color: transparent;
    position: relative;
}


input[type='radio']:hover:before {
    box-shadow: 0px 0px 0px 8px #ffd62e;
    border-radius: 50%;
    opacity: 1;
}

input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20%; /* Keeping margin only 10% */
    padding: 20%; /* Increase the inner area for pushing the border out of the circle */
    border-radius: 50%;
    transition: 0.3s; /* Move your transition to here */
}

input[type='radio']:checked:before {
    background: #ffd62e;
}

label {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

div {
    display: block;
    align-items: center;
    margin-bottom: 20px;
}


img {
    border-radius: 15%;
    margin-left: 15px;
}


@media (max-width: 700px) {
    main {
        margin: 3rem;
        padding: 1rem;

    }
}