.container {
  height: 100%;
  max-width: 100%;
  margin:0;
  display: center;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
}

.wrapper{
  width: 50%;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
    margin-right: 5%;

}

.scroll-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fixed-wrapper {
    position: fixed;
    right: 50%;
    top: calc(50% - 275px);
    display:flex;
    justify-content:center;
    height: calc(100vh - 60px);
    align-items: center;

}

.title {
  font-size: 60px;
  margin-top:20px;
  font-family: 'Roboto', sans-serif;
}

.links{
  margin:20px 0px 10px 0px;
}

span {
  display:inline-block;
  margin: 10px 0 10px 0px;
}

.lb {
  display:inline-block;
  margin-top:20px 0 20px 0px;
}

.date {
  margin:0px 100px 20px 0px;
  color: #555;
}

@media only screen and (max-width: 100%) {
  .fixed-wrapper {
    position: static;
  }
  .container {
    flex-direction: column;
  }
  .wrapper {
    width: 100%;
  }
  .mobile-view {
    display: block;
  }
  .desktop-view {
    display: none;
  }
  .wrapper.fixed-wrapper {
    min-height: calc(100vh - 190px);
    display: flex;
    justify-content: center;
    align-items: center;

  }
}

@media only screen and (max-width: 100%) {
.item iframe {
    width: auto !important;

  }
}

.paper {
	padding: 2rem;
	position: relative;
	box-sizing: border-box;
}

.paper:before {
	background-image: radial-gradient(#E3E3D2,#B0B096);
	content: ' ';
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: -1;
	display: block;
		filter: url("#crumple-effect")
		drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

.paper:nth-of-type(2) {
	 grid-row-end: span 2;
}

@keyframes orbit {
  from {
      transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  to {
      transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}
