/* NORMALIZE */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
	position: relative;
    min-height: 100%;
  	font-family: sans-serif; /* 1 */
  	-ms-text-size-adjust: 100%; /* 2 */
 	-webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  	margin: 0 0 20px; 0 /* bottom = footer height */
}
img {
    border: 1px solid #402c2b;
    margin: 5px;
    max-width: 100%;
    height: auto;
}
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  	overflow: auto;
}

* {
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}

/**
* Styling Scrollbar
*/

::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
     background: #313131;
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #313131; 
}

/* STYLE */

body {
	font-family: 'Arial', sans-serif;
	font-size: 1rem;
	letter-spacing: 3px;
	color: #000;
    line-height: 1.8;
	display: grid;
	align-items: center;
	justify-items: center;
	margin: 0;
	text-align: center;
  	padding: 0px;    
}

.contact {
    margin: 0 auto;
    padding: 0;
	font-size: 0.8rem;
}
