html {
  height: 100%;
  overflow: hidden;
}

body { 
  margin:0;
  padding:0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: Nunito;
}

h1 {
   font-size: 250%;
   margin-top: 0;
   padding-top: 0;
}

h2 {
  margin-bottom: 0px;
}

p {
  font-size: 140%;
  line-height: 150%;
  color: #333;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  padding: 10px;
  border-radius: 5px;
  background: rgba(240,230,220, .7);
  box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}

img.image {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 200px;
  transform: rotate(-8deg);
}

img.image-right {
  left: auto;
  right: 10%;
  transform: rotate(8deg);
}

img.map {
  margin-top: 20px;
}

.slide {
  position: relative;
  padding: 25vh 10%;
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, .7);
  transform-style: inherit;
  background-color: #ccc;
}

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left:0;
  right:0;
  pointer-events: none;
}

.slide, .slide:before {
  background: 50% 50% / cover;
}

.text {
  width: 50%;
  padding: 5%;
  border-radius: 5px;
  background: rgba(240,230,220, .7);
  box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}

.header {
  text-align: center;
  font-size: 160%;
  color: #fff;
  text-shadow: 0 2px 2px #000;
  z-index: 1;
}

.header a {
  color: #fff;  
}

.text a {
  color: black;
}

.note {
  color: white;
  font-size: 80%;
  font-weight: normal;
  margin-top: 0px;
}

.text-left {
  margin-left: 0px;
  margin-right: auto;
}

.text-right {
  margin-left: auto;
  margin-right: 0px;
}

