@import url('https://fonts.googleapis.com/css2?family=Liter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&display=swap');

body {
   background-color: #D1C360;
   color: #6B2138;
   font-family: "Liter", serif;
   font-size: 20px;
   font-weight: 400;
   font-style: normal;
    padding:20%;
   text-align: center;
   justify-items: center;
   align-items:center;
}

a {
    text-decoration: none;
    color: inherit;
  }

.speech-text {
    font-family: "Atkinson Hyperlegible Mono", serif;
    font-size: 15px;
}

.button {
    width: auto;
    height: 25px;
    background-color: #6B2138;
    border-radius: 10px;
    padding:10px;
}

.button::before {
    content: "⊹ ࣪ ˖ RETREAT ⊹ ࣪ ˖";
    color:#D1C360;
}

.button:hover {
    content:"⊹ ࣪ ˖ RETREAT ⊹ ࣪ ˖";
    background-color: #FC4D16;
}

.challenger {
    position: relative;
    left: 20%;
}

.doug {
    position: relative;
    left: -20%;
    transform: rotateY(180deg);
    animation: doug 1s ease-in forwards;
}

@keyframes doug {
    0%{rotate: 0;}
    100%{rotate:-90deg}
}

.fade-text{
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}