body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  overflow: hidden;
  background: linear-gradient(315deg, #0f0c33 0%, #000000 64%);
  position: relative;
}

.canvas {
  display: block;
  width: 100vw; /* Full width of the viewport */
  height: 100vh; /* Full height of the viewport */
  max-width: 100%;
  max-height: 100%;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@font-face {
    font-family: 'Poppins';
    src: url('Poppins-Regular.woff2') format('woff2'),
        url('Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.logo {
    position: fixed;
    text-align: center;
	width: auto;
	height: auto; /* Reduced from 40% to 30% */
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5); /* Scale down to 75% of original size */
	animation: snakeShadow 12s linear infinite;
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5)); /* Initial shadow setup */
}

@keyframes snakeShadow {
    0% {
        filter: drop-shadow(-5px -5px 3px rgba(0, 0, 255, 1)) drop-shadow(5px -5px 3px rgba(255, 255, 255, 1)) drop-shadow(5px 5px 3px rgba(128, 0, 128, 1)) drop-shadow(-5px 5px 3px rgba(0, 0, 255, 1));
    }
    25% {
        filter: drop-shadow(5px -5px 5px rgba(255, 255, 255, 0.8)) drop-shadow(5px 5px 5px rgba(128, 0, 128, 0.8)) drop-shadow(-5px 5px 5px rgba(0, 0, 255, 0.8)) drop-shadow(-5px -5px 5px rgba(128, 0, 128, 0.8));
    }
    50% {
        filter: drop-shadow(5px 5px 7px rgba(128, 0, 128, 0.6)) drop-shadow(-5px 5px 7px rgba(0, 0, 255, 0.6)) drop-shadow(-5px -5px 7px rgba(255, 255, 255, 0.6)) drop-shadow(5px -5px 7px rgba(0, 0, 255, 0.6));
    }
    75% {
        filter: drop-shadow(-5px 5px 10px rgba(0, 0, 255, 0.4)) drop-shadow(-5px -5px 10px rgba(128, 0, 128, 0.4)) drop-shadow(5px -5px 10px rgba(255, 255, 255, 0.4)) drop-shadow(5px 5px 10px rgba(0, 0, 255, 0.4));
    }
    100% {
        filter: drop-shadow(-5px -5px 3px rgba(0, 0, 255, 1)) drop-shadow(5px -5px 3px rgba(255, 255, 255, 1)) drop-shadow(5px 5px 3px rgba(128, 0, 128, 1)) drop-shadow(-5px 5px 3px rgba(0, 0, 255, 1));
    }
}

.form-container {
    position: fixed;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    z-index: 10; /* Ensure the form is above the canvas */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#name {
    padding: 10px;
    font-size: 16px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #0f0c33;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #1e1a66;
}

.message {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 255, 0, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    display: none; /* Initially hidden */
    z-index: 10; /* Ensure the message is above the canvas */
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

