/* I referenced this link to figure out how to make the radio buttons images (and hide the actual radio buttons)
and to make a border appear around the boxes when they are selected ()

https://stackoverflow.com/questions/30859218/create-a-border-around-image-when-active-clicked */

input[type="radio"] /* hides radio button */
{
    display: none;
}

img
{
	width: 295px;
	height: 240px;
}

label 
{
    display: inline-block;
    width: 295px;
    height: 240px;    
    position: relative;
}

h2
{
	text-align: center;
	color: red;
	font-size: 50px;
}

input:checked + label /*when the input is checked, adds a border*/
{
    border: 4px solid #ff33cc;     
}

h1
{
	font-family: Didot;
	text-align: center;
	border: 4px solid red;
	border-width: 400 px;
	border-radius: 5px;
}

#submit-button
{
	text-align: center;
	width: 100px;
  	border: 10px solid red;
  	padding: 10px;
  	margin: 20px;
}

.center
{
	margin-left: auto;
	margin-right: auto;
	width: 100px;
}

#result-title
{
	font-size: 80px;
	color: red;
}

.error
{
	font-size: 20px;
}

.text-format
{
	text-align: center;
	font-family: Didot;
}

#title
{
	font-size: 80px; 
	color: pink;
}
.result-paragraph
{
	color: green;
	font-size: 20px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 400px;
}