.content #question{
    width: 75em;
    display: block;
    margin: 3em auto;
}

@media only screen and (max-width:1440px) {

    .content #question{
        width: 65vw;
    }

    form input[type='text']{
        width: 20vw;
    }
}

@media only screen and (max-width:768px) {

    .content #question{
        width: 100%;
    }

    form input[type='text']{
        width: 30vw;
    }

}

@media only screen and (max-width:599px) {

	.content #question{
		margin: 3em auto 1em;
	}

	form input[type='text']{
        width: 100%;
    }

}