:root {
	--yellow: #EFD56C;
	--brown: #633718;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  margin: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  width: 100%;
  font-size: 16px;
}

body {
	font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  background: var(--yellow);
	color: var(--brown);
	padding: 1em;
	line-height: 1.35;
  min-height: 100%;
  margin: 0 auto;
  max-width: 55rem;
  position: relative
}

strong {
  font-weight: 800;
}

header {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  text-indent: -9999em;
  overflow: hidden;
  width: 252px;
  height: 161px;
  background-image: url(../img/schoko-christkind-mobil.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  position: absolute;
}

main {
   margin-top: -1rem;
   margin-left: -1rem;
   margin-right: -1rem;
   margin-bottom: -1rem;
}

.facebook {
  margin-top: 2em;
  margin-bottom: 0.5em;
  text-align: center;
}
.main-image {
  width: 100%;
  height: auto;
}

.shop-link {
  color: white;
  background: var(--brown);
  width: 10em;
  height: 10em;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  padding: 1em;
  font-size: 0.9em;
  margin: 0 auto;
}

.shop-link .bold {
  text-transform: uppercase;
  font-weight: 800;
}

.shop-link span {
  text-transform: none;
  font-weight: 400;
}

.shop-link:hover {
  background: black;
}

.slider {
}
.slider img {
  width: 100%;
  height: auto;
}

.slider img {
  padding: 0.5rem;
}

.slick-prev:before, .slick-next:before {
  color: var(--brown);
}

.slick-dots li.slick-active button:before {
    color: var(--brown);
}

.imprint {
  margin-top: 4rem;
  font-size: 0.8rem;
}
@media only screen and (min-width: 801px) {

  body {
    padding: 2em;
  }

  main {
   margin-top: -3rem;
   margin-left: -3rem;
   margin-right: -3rem;
   margin-bottom: -3rem;
  }

  header {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    width: 537px;
    height: 68px;
    background-image: url(../img/schoko-christkind.svg);
  }

  .shop-link {
    position: absolute;
    left: 60%;
    top: 11rem;
  }

  .facebook {
    text-align: right;
  }

  main {
    margin-top: -8rem;
  }

  .slider {
    margin: 0 -0.5em;
  }
 
}