@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: auto;
  /* Fallback for browsers that do not support Custom Properties */
  display: flex;
  font: 1rem/1.3 "Rubik", "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #000000;
  color: white;
  background-color: #006600;
}
body::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0);
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0);
}
body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}
body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: "Skranji";
}
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary {
  color: #F8E71C;
}
h1.italic, h2.italic, h3.italic, h4.italic, h5.italic, h6.italic {
  font-weight: 900;
  font-style: italic;
}

.button {
  position: relative;
  display: inline-block;
  padding: 20px 24px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
  color: #006600;
  cursor: pointer;
  outline: none;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}
.button:hover {
  opacity: 1;
  transform: translateY(-1px);
  background-color: white;
  box-shadow: 0 2px 30px rgba(255, 255, 255, 0.6);
}
.button:active {
  opacity: 0.7;
}
.button:focus {
  outline: none;
}

.page-bg {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-image: linear-gradient(167deg, #006600 1%, #596600 95%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-text-container {
  position: absolute;
  top: 130px;
  height: auto;
  width: calc(100% - 20px);
  max-width: 900px;
  margin: auto;
  left: 0;
  right: 0;
}
.page-text-container header {
  text-align: center;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.36);
  transform: translateY(200px) scale(0.6);
  transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}
.page-text-container header.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.page-text-container header .logo {
  width: 259px;
  height: 272px;
  margin: auto;
  background-image: url(../img/parti-logo.png);
  background-repeat: no-repeat;
  background-size: 259px 272px;
  margin-bottom: -20px;
}
.page-text-container header h1 {
  margin-bottom: 5rem;
}
.page-text-container p {
  font-size: 1rem;
}
.page-text-container .quote-container {
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 30px;
  text-align: center;
}
.page-text-container .quote-container .randomquote:before {
  content: "« ";
}
.page-text-container .quote-container .randomquote:after {
  content: " »";
}
.page-text-container .quote-container .quote-before {
  position: absolute;
  width: 23px;
  height: 12px;
  margin: auto;
  top: -12px;
  left: 0;
  right: 0;
  background-image: url(../img/quote-before.png);
  background-repeat: no-repeat;
  background-size: 23px 12px;
}
.page-text-container .quote-container .randombtn {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  background-image: url(../img/refresh-icon.png);
  background-repeat: no-repeat;
  background-size: 40px 40px;
  transform: scale(1);
  transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1), transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}
.page-text-container .quote-container .randombtn:hover {
  background-color: rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}
.page-text-container .quote-container .randombtn:active {
  transform: scale(0.8);
}

.program-container {
  text-align: center;
  margin-bottom: 200px;
  transform: translateY(200px);
  transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}
.program-container.show {
  opacity: 1;
  transform: translateY(0);
}
.program-container span.intro {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.program-container span.sub {
  font-size: 0.9rem;
}
.program-container h2 {
  margin: 4rem 0 6px 0;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.program-container h2 span {
  font-family: "Rubik";
  opacity: 0.7;
}

.bottom-fixed-container {
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: fixed;
  z-index: 200;
  height: auto;
  width: calc(100% - 20px);
  max-width: 400px;
  padding: 20px;
  transform: translateY(200px);
  transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}
.bottom-fixed-container.show {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
