* {
  box-sizing: border-box;
}

html {
  min-height: 100vh;

}

body{
  margin:0;
  background: #b4bac7;
  min-height: 100%;
  font-family: 'pt sans narrow', sans-serif;
  font-size: 1.5rem;
  text-align: justify;
  text-align: center;
}

p{
  margin:0;
  padding:0;
  margin-bottom: 1rem;
}

ol {
  margin:0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}

ul {
  /* list-style:  lower-roman; */
  list-style: none;
  margin-top:0;
  margin-bottom:1rem;
  padding:0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  /* margin:0 auto;
  width:500px; */
}

.emph-list{
  color:rgb(82, 82, 82);
  font-style: italic;
}

hr {
  height:1rem;
  width:100%;
  border-top:1px solid rgba(106, 105, 134, 1);
  border-bottom:none;
  border-left:none;
  border-right:none;
}

a {
  color:rgba(106, 105, 134, 1);
  text-decoration: none;
}

.header {
  text-align: center;
  font-size: 3rem;
  line-height: 2.9rem;
  filter: blur(.5px);
  padding-bottom: 1rem;
}

.sub {
  /* text-align: left; */
  font-size: 2rem;
}

a:hover {
  color:rgba(227, 226, 236, 1);
}

.center {
  text-align: center;
  font-size: 1rem;
}

.quote {
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 1rem;
}

.main-wrap {
  width:100%;
}

.main {
  /* position: absolute;
  top:1rem;
  left:1rem; */
  max-width:100%;
  margin:2rem auto;
  width:800px;
  display: flex;
  flex-direction: column;
  /* padding-right: 2rem; */
  z-index: 1;
}

.center img {
  width: 80%;
}

.title img {
  min-width:100%;
}
.title {
  padding-bottom:2rem;
}

.main p{
  /* margin-bottom: 1rem; */
}

.list-head{
  margin-bottom:.2rem;
}

.fill {
  width:50%;
  display:none;
}

.animation-wrap {
  /* position: fixed; */
  /* top:0;
  left:0; */
  max-width:100vw;
  min-height:100vh;
  max-height:100vh;
  display: flex;
  padding:1rem;
  /* display:none; */
}

.animation-container {
  top:0;
  right:0;
  width:100%;
  /* width:800px; */
  margin:0 auto;
  display: flex;
  flex-direction: row;
  /* display:none; */
}

.column {
  display: flex;
  flex-direction: column;
  width:500%;
}

.window {
  overflow: hidden;
}

.a {
  width:100%;
  height:100%;
  background: radial-gradient(ellipse at center, rgba(180,186,199,1) 0%, rgba(180,186,199,1) 39%, rgba(84,117,93,1) 100%);
  background-repeat: repeat;
  background-size:200% 40%;
  animation: down 30s infinite linear;
}

.b {
  width:100%;
  height:30%;
  background: linear-gradient(to bottom, rgba(193,191,234,1) 0%, rgba(0,0,0,1) 50%, rgba(193,191,234,1) 100%);
  background-repeat: repeat;
  background-size:50% 25%;
  animation: up 20s infinite linear;
}

.c {
  position: absolute;
  width:100%;
  height:10%;
  bottom:18%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(30,30,38,1) 45%, rgba(30,30,38,1) 55%, rgba(0,0,0,0) 100%);
}

.d {
  width:100%;
  height:100%;
  background: linear-gradient(to right, rgba(122,121,153,1) 0%, rgba(0,0,0,0) 100%);
  background-repeat: repeat;
  background-size:50% 25%;
  animation: right 20s infinite linear;
}

.e {
  width:100%;
  height:100%;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(122,121,153,1) 100%);
  background-repeat: repeat;
  background-size:50% 25%;
  animation: left 20s infinite linear;
}

@keyframes down {
  0% {background-position:  0 -200%;}
  100% {background-position:  -400% 0}
}

@keyframes up {
  0% {background-position:  0 0%;}
  100% {background-position:  0 -200%}
}

@keyframes left {
  0% {background-position:  0 0;}
  100% {background-position:  -200% 0;}
}

@keyframes right {
  0% {background-position:  -200% 0;}
  100% {background-position:  0 0;}
}

@media only screen and (max-width: 800px) {

  .fill {
    display:none;
  }

  .main{
    margin:2rem 1rem;
    width:95%;
  }

  .animation-wrap {
    position: relative;
    width:100%;
    padding:0;
    /* display:none; */
  }

  .animation-container {
    width:100%;
  }

  .end {
    height:2rem;
  }
}
