input[type="file"] {
  display: none;
}

.myCode {
  background: rgba(0,0,0,0.7);
  color: white;
  border-radius: 5px;
  padding: 0.75rem;
  font-size: 14px;
  font-family: Consolas;
  width: 95%;
  height: 300px;
  border: white 1px solid;
  outline:0;
}
.myCode:focus {
  border: #f6a615 1px solid;
  outline: rgba(246,166,21) 1px solid;
}


.button-file {
  color: black;
  text-decoration: none;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-family: Montserrat;
  font-weight: 700;
}

.button-cancel {
  width: 200px;
  height: 30px;
  font-size: 12px;
}

.msg-animation {
  animation-name: changeScaleOfMsg;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes changeScaleOfMsg {
  0% { transform: scale(1);}
  50% { transform: scale(1.2)}
  100% { transform: scale(1);}
}

.guide-link {
  color: #F6A615;
  font-weight: 700;
  transition: 0.3s;
}

.guide-link:hover {
  color: #dd950f;
}
