main{
	display: flex;
	flex-direction: column;
	align-items:center;
	
}



.table {
	width: 50%;
	border: none;
	margin-bottom: 20px;
}
.table thead th {
	font-weight: bold;
	text-align: center;
	border: none;
	padding: 10px 15px;
	background: #d8d8d8;
	font-size: 12px;
	word-wrap: break-word;
}
.table thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.table thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.table tbody td {
	text-align: center;
	border: none;
	padding: 10px 15px;
	font-size: 12px;
	vertical-align: top;
	
}
.table tbody tr:nth-child(even){
	background: #f3f3f3;
}
.table tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.table tbody tr td:first-child +td {
	border-radius: 8px 0 0 8px;
	text-align: left;
}
.table tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}

.hr-shelf {
	margin: -30px auto 10px;
	padding: 0;
	height: 50px;
	border: none;
	border-bottom: 1px solid #1f1209;
	box-shadow: 0 20px 20px -20px #333;
	width: 95%;
}
a{
	color: black; 
	text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

 h1 {
    margin: 1em 0 0.5em 3em;
    color: #343434;
    font-weight: normal;
    font-family: 'Ultra', sans-serif;  
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    text-shadow: 0 2px white, 0 3px #777;
}
 
 @media screen and (max-width: 600px) {
	 
	  h1 {
    margin: 1em 0 0.5em 3em;
    color: #343434;
    font-weight: normal;
    font-family: 'Ultra', sans-serif;  
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    text-shadow: 0 1px white, 0 1px #777;
}
	 
	 
	 
	 
  	.table{
		border: 0;
  	}

  
  
  	.table thead {
	    border: none;
	    clip: rect(0 0 0 0);
	    height: 1px;
	    margin: -1px;
	    overflow: hidden;
	    padding: 0;
	    position: absolute;
	    width: 1px;
  	}
  
  	.table tr {
    	border-bottom: 1px solid black;
    	display: block;
   		margin-bottom: 30px;
  	}
  
	.table tr td {
    	display: block;
    	text-align: right;
	border-bottom: 1px solid #ddd;
	padding-bottom: 1em;
		
	}
  
	.table tr td::before {
	    content: attr(data-label);
	    float: left;
	    font-weight: bold;
	    text-transform: uppercase;
		text-align: left;
		font-size: 10px;
		
		
	}
	.table tbody tr td:first-child +td {
	
	text-align: right;
}
  
  	.table tr  td:last-child {
    	border-bottom: 0;
		margin-bottom: 2em;
  	}
}