.slant-container {
  transform: rotate(-7deg) translate(100px,-25px);
  color: yellow;
  animation: mymove 5s infinite;
  font-family: Minecrafter;
}

@keyframes mymove {
  50% {font-size: 30px;}
}

#settings-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#settings-modal.show {
  display: flex;
}

#settings-modal .modal-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  color: #ffffff;
}

#settings-modal .close-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
}

#settings-modal .close-btn:hover {
  color: #fff;
}