.tut a {
    margin-top: 5px;
    text-decoration: none;
    color: green;
  }
  
  .tut a:hover {
    color: #d4ce46;
    background:#0e5135;
    padding: 3px;
  }
  
  .btn-container {
    text-align: center;
  }
  
  .modal-btn-BO {
    display: inline-block;
    background-color: #000; 
    border: none;
    border-radius: 3px;
    color: #fff;
    padding: 10px 15px;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  .modal-btn-WO {
    display: inline-block;
    background-color: #fefefe; 
    border: none;
    border-radius: 3px;
    color: #000;
    padding: 10px 15px;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  
  .btn:hover {
    background:#0e5135;
    color: #d4ce46;
  }
  
  
   .modal {
    display: none; 
    position: fixed; 
    z-index: 2; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
  }
  
  .blackout {
    position: relative;
    z-index: 1;
    background-color: black;
    transition: background-color linear 0.1s;
  }
  
  .modal-content {
    text-align: center;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    background-color: #000;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  } 
  
  .image {
    height: 120px;
    padding: 20px 50px;
    display: initial;
  }
  
  .flame {
    filter: drop-shadow(0px 0px 4px darkorange);
  }
  
  .modal-message {
    text-transform: uppercase;
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: #fff;
  }
  
  .resume-container {
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px 100px 0px;
    animation: resume-up ease-out 1.5s forwards;
    animation-delay: 3.5s;
  }
  
  #sword {
    width: 100px;
    height: 100px;
  }
  
  #resume {
    text-decoration: none;
    display: inline;
    font-size: 0.7em;
    padding: 20px;
    background: rgb(124, 74, 74);
    border-radius: 4%;
    color: #fff;
    text-transform: uppercase;
    font-family: "Press Start 2P", cursive;
    border: 3px solid rgb(212, 168, 81);
  }
  
  .fade-in span {
    opacity: 0;
    animation: text-fade 0.5s linear forwards;
    animation-delay: 0.3s;
  }
  
  .fade-in span:nth-of-type(2) {
    animation-delay: 0.7s;
  }
  
  .fade-in span:nth-of-type(3) {
    animation-delay: 1.2s;
  }
  
  .fade-in span:nth-of-type(4) {
    animation-delay: 1.7s;
  }
  
  .fade-in span:nth-of-type(5) {
    animation-delay: 2.2s;
  }
  
  .fade-in span:nth-of-type(6) {
    animation-delay: 2.7s;
  }
  
  .fade-in span:nth-of-type(7) {
    animation-delay: 2.9s;
  }
  
  @keyframes text-fade{
    0% {
      opacity: 0.1;
  
      transform: translateX(-100px);
  
    }
    100% {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  
  @keyframes resume-up {
    from {
      opacity: 0.1;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }