/* 

  headings: 
  paragraphs: 
  copyright: 

  colors: #fe6e00 #5d00fe #00feba

*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

body {
  margin: 0;
  padding: 0;

  min-height: 100vh;

  /* background: url("./assets/img/Desktop.png");
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: 100% 100%; */
  background-color: #1b1b1b;

  display: flex;
  flex-direction: row;

  /* align-items: center; */
  /* justify-content: center; */

  font-family: "Poppins", sans-serif;
}

.header {
  width: 725px;
  /* height: 100px; */

  margin-left: calc(50vw - 362.5px);

  /* position: absolute; */
  border-bottom: 1px solid #fe6e00;

  text-align: center;

  align-items: center;

  font-family: "Poppins", sans-serif;
}

.header > h1 {
  color: #fff;

  text-shadow: 5px 5px 5px #000;
  margin: 0;
}

.header > h2 {
  margin: 0;
  margin-bottom: 10px;

  text-shadow: 5px 5px 5px #000;

  color: #f3f3f3;
}

.content {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;
}

.content > .learnle-item {
  width: 500px;

  margin: 25px;
  padding: 25px;

  background: #fff;

  text-align: center;

  border: 2px solid #fe6e00;
  border-radius: 15px;

  box-shadow: 0px 2px 50px 2px #1b1b1b;

  transition: 0.5s ease-in-out all;
}

.learnle-item:hover {
  transform: scale(1.05);
}

.content > .learnle-item > p {
  font-weight: 300;
  margin-bottom: 25px;
  /* text-shadow: 2px 2px #000; */
}

.footer {
  font-family: "Poppins", sans-serif;
}

/* moving letters */

.ml6 {
  position: relative;
  font-weight: 900;
  font-size: 3.3em;
}

.ml6 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml6 .letter {
  display: inline-block;
  line-height: 1em;
}

/* tympanus buttons */
.button {
  pointer-events: auto;
  cursor: pointer;
  background: #e7e7e7;
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--mimas {
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  overflow: hidden;
  color: #fff;
  background: #e7e7e7;
}

.button--mimas span {
  color: white;
  position: relative;
  mix-blend-mode: difference;
}

.button--mimas::before {
  content: "";
  background: #000;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.completed::before {
  color: white;
  background: #fe6e00;
}

.completed:disabled::before {
  color: #222;
  background: #888;
}

.completed:disabled:hover:before {
  transform: none;
}

.completed:hover::before {
  transform: translate3d(100%, 0, 0);
}

.button--mimas:disabled::before {
  color: #222;
  background: #888;
}

.button--mimas:disabled:hover:before {
  transform: none;
}

.button--mimas:hover::before {
  transform: translate3d(100%, 0, 0);
}

/* bejhgsmfbhgjdsfg */
.quote-container {
  width: auto;
  max-width: 900px;
  /* 
  padding: 20px 30px;

  border-radius: 10px;

  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.2); */

  background-color: rgba(255, 255, 255, 0.4);
}

.quote-text {
  font-size: 2rem;
}

.long-quote {
  font-size: 1.75rem;
}

.fa-quote-left {
  font-size: 3rem;
}

.quote-author {
  margin-top: 15px;

  font-size: 1.5rem;
  font-style: bold;
  font-weight: 400;
}

.button-container {
  margin-top: 15px;

  display: flex;
  justify-content: space-between;
}

.button-container > button {
  height: 2.5rem;

  padding: 0.5rem 1.8rem;

  color: #fff;
  cursor: pointer;

  font-size: 1.2rem;

  box-shadow: 0 0.3rem rgba(121, 121, 121, 0.65);

  border: none;
  border-radius: 10px;

  outline: none;

  background: #333;
}

.button-container > button:hover {
  filter: brightness(110%);
}

.button-container > button:active {
  transform: translate(0, 0.3rem);

  box-shadow: 0 0.1rem rgba(255, 255, 255, 0.65);
}

.twitter-button:hover {
  color: #38a1f3;
}

.fa-twitter {
  font-size: 1.5rem;
}

/* loader */
.loader {
  width: 120px;
  height: 120px;

  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #38a1f3; /* Blue */
  border-radius: 50%;

  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* media query: tablet */
@media screen and (max-width: 1000px) {
  .quote-container {
    margin: auto 25px;
  }

  .quote-text {
    font-size: 2.5rem;
  }
}
