/* Site defaults
========================================================================== */

/* Set default document styles */

html {
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Set default body styles */

body {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-repeat: repeat;
  background-color: #37444C;
}

/* Set default inheritance rules*/

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  color: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/* set box sizing to border-box */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Turn of motion animations for users who prefer reduced motion*/

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Set default element Styles*/

/* Utility Classes
========================================================================== */

/* Image classes */

.imgRight {
  float: right;
  margin: 1em;
}

.imgLeft {
  float: left;
  margin: 1em
}

.imgCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Clearfix class to contain floats */

.clearFix:before, .clearFix:after {
  content: " ";
  display: table;
}

.clearFix:after {
  clear: both;
}

/* components
========================================================================== */

.wrapper {
  width: 90%;
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  border-radius: 4px;
}

.wrapper img {
  width: 100%;
  display: block;
}
