
a { text-decoration: none; margin: 0 0px; }

.linktree {
	min-height: 50px;
	margin-top: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    gap: 10px;
}

a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
	color: #666;
	background-color: #eee;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	padding: 10px 30px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.3);
	border-bottom-width: 3px;
    margin-bottom: 10px;

}

	a.btn:hover {
		background-color: #e3e3e3;
		border-color: rgba(0,0,0,0.5);
	}
	
	a.btn:active {
		background-color: #CCC;
		border-color: rgba(0,0,0,0.9);
	}








#toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;

  opacity: 0;
  pointer-events: none;
  
  transition: all 0.3s ease;
}

#toast.show {
  opacity: 1;
  bottom: 50px;
}