/* CSS Document */
body{
  margin: auto;
  margin-top: 100px;
  width: 70%;
}

.title{
    font-size: 50px;
    font-weight: bold;
}

.form{

}

.container { 
 max-width: 900px; 
  width: 100%;   
  height: auto;  
  display: block;  
} 

label { 
  font-size: 30px; 
  font-weight: bold;
  float: left;  
  padding-right: 50px;  
  line-height: 10%;  
  display: block;  
  width: 208px;  
}

.label { 
  font-size: 30px; 
  font-weight: bold;
  float: left;  
  padding-right: 50px;  
  line-height: 10%;  
  display: block;  
  width: 208px;  
}

.radio_label{
	 float: left; 
     font-size: 20px; 
	 width: 450px;
	 font-weight: normal;
}	

input{
width:250px;
height: 30px;
margin-top: -10px;
}

.radio_input{
	width: 100px;
	float: left;
	margin-left: 220px;
}

select{
width:250px;
height: 30px;
margin-top: -10px;
}

textarea{
width: 600px;
margin-top: -10px;
}

.submit{
       margin: auto;
        max-width: 30px;
}

.inputs{
    height: 30px;
    font-size: 25px;
    font-weight: bold;
    width: 180px;
}

/** LIGHTBOX MARKUP **/

.lightbox {
  /* Default to hidden */
  display: none;

  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* A bit of padding around image */
  padding: 1em;

  /* Translucent background */
  background: rgb(0, 0, 0, 0.8);
}

/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}

.lightbox img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 100%;
  max-width: 100%;
   width: auto;
  height: auto;
}

.button_create, .button_export, .button_back{
    border-radius: 12px;
    border: 1.5px solid black;
    background-color: AliceBlue;
    padding: 4;
    font-weight: bold;
    box-shadow: 0 2px 3px #ccc;
    text-decoration: none;
    transition: 0.1s;
}

.button_export{
    float: right;
}
.button_export:hover, .button_create:hover, .button_back:hover{
    background-color: LightSkyBlue;
    border-bottom-width: 0;
    margin-top: 0.2em;
}
a:link {
  color: black;
}

/* visited link */
a:visited {
  color: black;
}

.container{
    background-color: whitesmoke;
    padding: 2em 2em 1em 2em;
}