#click-me {
	box-shadow: 20px 20px;
}

button {
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    background: #0069ed;
    color: #ff00ff;
    font-family: sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, 
                transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button:hover,
button:focus {
    background: #0053ba;
}

button:focus {
    outline: 1px solid #fff;
    outline-offset: -4px;
}

button:active {
    transform: scale(0.99);
}

body { 
  margin: 0; 
  overflow: hidden; /* Prevent scrollbars */
	background-color: #140f22;
}
/* Add to your styles.css */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Place behind other content */
}

main {
	position: relative
}
