@media only screen and (max-width: 600px) {
  .windowHeight {
    height: 75vh;
  }
}
.flex p{
  cursor: pointer;
}
@media only screen and (min-width: 601px) {
  .windowHeight {
    height: 60vh;
  }
}

@font-face {
    font-family: allAroundGothic;
    src: url(AllRoundGothicText.ttf);
  }

[role=heading] {
    font-size: xx-large;
    color: white;
    text-align: center
}

.entry{
    display: block;
}

.entry-item{
    display: block;
    margin-left: auto;
  margin-right: auto;
  width: 90%;
  font-size: large;
  text-align: start;
  color: black
}

.intro{
    color: white;
    text-align: center
}

input, label, a {
    color: white;
    display:block;
    text-align: center;
}

label{
    text-align: left;
}

#forgotPassword{
    color: #6dc5dc;
    float: right;
}

input{
    display: block;
    margin-left: auto;
    border-radius: 10px;
    border-width: 8px;
    border-color:  white;
    margin-right: auto;
    width: 100%;
    font-size: large;
    text-align: start;
    color: black;
    margin: 5px;
}

.password-label{
    clear: both;
    width: 100%;
}

[for=password]{
    float: left;
}

[role="alert"] {
  color: #ff3030;
}

.buttons{
    padding: 10px;
    text-align: center;
}

#next{
    background-color: #6dc5dc;
    border-width: 10px;
    border-radius: 10px;
    border-color: #6dc5dc;
    color: white
}

.create{
    color: white;
    text-align: center;
    white-space: normal;
    display: inline;
}

#createAccount{
    color: #6dc5dc ;
    margin-left: 5px;
    display: inline;
}

.divider{
    padding: 10px;
    text-align: center;
    color: white;
}

body{
    overflow-x: hidden; 
position: relative; 
width: 100vw; 
height: 100vh; 
background: radial-gradient(farthest-corner at top, #006CBA 0%, #062458 40%, #070726 80%) top right/300% 300%;
animation: colorChange 15s infinite alternate;
}

@keyframes colorChange {
  to {
    background-position:top left;
  }
 }

h1{
    font-family: allAroundGothic;
}
blockquote {
    border:none;
 
    quotes: "\201C""\201D""\2018""\2019";
}

blockquote {
font-size:21px;
}

blockquote h1:before { 
content: open-quote;
font-weight: bold;
font-size:50px;
color:#ffff;
} 
blockquote h1:after { 
content: close-quote;
font-weight: bold;
font-size:30px;
color:#ffff;
}
@media only screen and (max-width: 600px) {
  #scroll1 img{
    display: none;
  }
  #answer{
    width: 100vw;
    color: yellow;
  }
  div.flex p:nth-child(1){
    margin-left: 0vw;
}
  div.flex p:nth-last-child(1){
    margin-left: 20vw;
}
}

.typewriter {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    animation: 
      typing 2.5s steps(40, end),
      blink-caret .75s step-end infinite;
  }
  
  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

  .scroll {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    bottom: 0px;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    &::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 18px;
      width: 18px;
      height: 18px;
      border-left: 2px solid white;
      border-bottom: 2px solid white;
      transform: rotate(-45deg);
    }
  }
  
  @keyframes down {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translateY(15px);
    }
    40% {
      transform: translate(0);
    }
  }
  
  @-webkit-keyframes down {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translateY(15px);
    }
    40% {
      transform: translate(0);
    }
  }

  .type {
    color:#0000;
    background:
      linear-gradient(-90deg,white 5px,#0000 0) 10px 0,
      linear-gradient(white 0 0) 0 0;
    background-size:calc(var(--n)*1ch) 200%;
    -webkit-background-clip:padding-box,text;
    background-clip:padding-box,text;
    background-repeat:no-repeat;
    animation: 
     b .7s infinite steps(1),   
     t calc(var(--n)*.05s) steps(var(--n)) forwards;
  }
  
  @keyframes t{
    from {background-size:0 200%}
  }
  @keyframes b{
    50% {background-position:0 -100%,0 0}
  }