html {
  /* Setting a base font size of 10px give us easier rem calculations
     Info: 1rem === 10px, 1.5rem === 15px, 2rem === 20px and so forth
   */
  font-size: 10px;
}
body{
  font-family: monospace;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: #333;
  margin: 0;
  display: flex;
}

main{
  padding: 15px;
  background: #E8E8E8;
  
}

p{
  font-size: 16px;
}


img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

fig-caption{
  
  font-family: monospace;
  font-weight: bold;
  font-size: 15px;
  
}

#img-div{
  padding: 60px;
  background: white;
  border-radius: 5px;
  margin: 0;
}

.typewriter h1 {
  color: #000;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 5s steps(11, end),
    blink-caret .70s step-end 1;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 30% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange }
}

li{
  font-size: 8;
  margin: 16px 0;
}

ul{
  max-width: 550px;
  margin: 0 auto 50px auto;
  text-align: left;
  line-height: 1.2;
}

b{
  font-size: 20px;
  background: black;
  border-radius: 5px;
  color: white;
  //padding: 8px;
}

@media (max-width: 550px) {
  b{
    font-size: 14px;
  }
  
}

#paypal{
    background: #A9A9A9;
    color: black;
}
#tittle{
    font-size: 70px;
  
}