/* author: https://codepen.io/grantjenkins/pen/YzZdpjP
Grant Jenkins
 */

* {
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

body {
  background: #242424;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body canvas {
  box-shadow: 0.2em 0.2em 2em #0008;
  border: none;
  outline: none;
}
#footer {
    margin-top: 20px;
    font-size: 0.9em;
    text-align: center;
  }
.donate-button {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #353d4a; /* Червоний колір кнопки */
    color: white;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Зробити так, щоб кнопка була поверх іншого контенту */
}

.donate-button:hover {
    background-color: #e04040; /* Темно-червоний колір при наведенні */
}
.homepage-button {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #007bff; /* Синій колір кнопки */
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.homepage-button:hover {
    background-color: #0056b3; /* Темно-синій колір при наведенні */
}