@import 'normalize.css';

html,
body {
  height: 100%;
}

html {
  box-sizing: border-box;
}

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

body {
  font-family: Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  margin-left: 4em;
  /*color: #252525;*/
  color: rgb(41, 19, 10);
}

a {
  color: #298ce2;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
a:hover {
  border-bottom: 2px solid #0026f7; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

ul {
  list-style: square;
}

.logo {
  position: fixed;
  z-index: 150;
  display: block;
  width: 100%;
  top: 50%;
  left: 0;
}
.logo > div {
  display: block;
  max-width: 30em;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
}
.logo img {
  max-width: 100%;
  height: auto;
  padding: 0 0.500em;
}

.slides {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(242, 113, 113);
}

.slides > .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.slides > .slide.current {
  z-index: 100;
}
.slides > .slide.next {
  z-index: 50;
}

.slides::after {
  content: attr(data-content);
  position: absolute;
  z-index: 100;
  bottom: 1.400em;
  right: 1.400em;
  color: white;
  font-size: 0.800em;
  letter-spacing: 1px;
}

.content-wrapper {
  position: absolute;
  z-index: 150;
  width: 100%;
  min-height: 100%;
  top: 100%;
  top: calc(100% - 0.500em);
  left: 0;
  background-color: white;
  overflow: visible;
  background: rgb(241, 247, 97);
}

.content {
  margin: 0 auto;
  padding: 4em 1em;
  max-width: 40em;
}

