/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
=====================================
Generic
=====================================
*/

body {
  background: url("./fcc-survey-form/images/background.jpg") violet repeat right;
  background-size: 150%;
  color: #FFFFFF;

}

h1  {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "IBM Plex Mono";
  font-weight: 700 ;
  font-size: 60px;
  text-transform: uppercase;
  padding: 60px 0 60px;

  }

.card {

    width: 50%;
    margin: 0 auto;
    background: #FFFFFF;
    color: 000;
    font-family: "IBM Plex Mono";
    font-weight: 400 ;
    font-size: 16px;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 60px;

  }

p {

    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    padding: 20px 0;
    
  }

h3 {
    padding-bottom: 15px; 
  }

/*
==================================
Form
==================================
*/

fieldset {
 
    border: none;
    
  }
  
 
.subheading {

    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
   padding:20px 10px 0;
   border-bottom: 2px dotted black;
   margin:  0 30px 30px 0;
   text-align: left;

  }
  
.info-group {
   
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat( auto);
    grid-gap: 10px;
    width: 100%;
    align-content: center;
    align-items: top;

  }


.info-group-2 {

    grid-auto-flow: dense;
   
   
  }
  
.text-input {

  width: 200px;
  height: 2em;
  border-radius: 5px; 
  border: 2px solid #5E3D6D;
  padding: 3px;

}

.info {
  text-align: left; 

}

.content {
  text-align: left;
}


 
/*label {

  display: block;

}*/

input#radiobuttons {

  margin: 0 20px 20px 3px;
  cursor: pointer;

}

input#checkbox {

  margin: 0 20px 20px 3px;
  cursor: pointer;

}

textarea {
 
    border-radius: 5px; 
    border: 2px solid #5E3D6D;
    outline: none; 
    width: 300px;
    height: 100px;
    margin-left: 165px;
   
 }

 button {

   margin: 20px 0 0 165px;
   border-radius: 5px; 
    border: 2px solid #5E3D6D;

 }

 /*@media (max-width: 900px) { 

   info-group {

    grid-template-columns: 1fr 3fr;

   }

   input {

     width: 50%;
    display: inline-block;

   }
  }

  textarea {

    margin-left: 0;

   }*/
   
  
