
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #000000; /* Pure black background */
  background-image: linear-gradient(315deg, #000000 0%, #060513 15%, #000000 30%, #05091b 50%, #000000 65%, #050b1f 80%, #000000 100%); /* Darker gradient */
  color: #f1f1f1; 
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff; 
}


button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #0077ff; 
  color: white;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  margin: 10px;
}

button:hover {
  background-color: #005bb5; 
  transform: scale(1.05);
}


.hidden {
  display: none;
}

section {
  background-color: #0b1d2a; 
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
  text-align: left;
}

section h2 {
  margin-bottom: 20px;
  color: #0077ff; 
}


img, canvas {
  max-width: 100%;
  max-height: 400px; 
  width: auto;
  height: auto;
  object-fit: contain;  
  display: block;
  margin: 0 auto;
}

input[type="file"], textarea {
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #353535; 
  background-color: transparent; 
  color: #c0d6e4; 
}

textarea {
  height: 150px;
}


#mainSection {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#mainSection button {
  flex: 1;
  padding: 15px 30px;
  font-size: 1.2em;
}

.wrap {
  position: fixed; /* Fixes it to the viewport */
  bottom: 20px; /* Adjust this to set distance from bottom */
  left: 50%; /* Centers horizontally */
  transform: translateX(-50%); /* Ensures perfect center alignment */
  color: #f1f1f1; /* Text color */
  padding: 10px 20px; /* Padding for some space around the text */
  font-size: 1em; /* Font size */
  text-align: center; /* Center the text */
  z-index: 10; /* Ensures it appears above other content */
  width: auto; /* Adjusts to fit content */
}

.glitch {
  margin: 90px;
}

canvas {
  margin-top: 20px;
  border: 1px solid #020c18; 
  border-radius: 10px;
}

#canvas {
  display: none;
}

@media (max-width: 768px) {
  #mainSection {
    flex-direction: column;
  }

  button {
    width: 100%;
    margin-bottom: 10px;
  }
}


