@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow: hidden;
  background-color: #0c0c1d;
  color: #ffffff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 70;
  font-style: normal;
}
.content::selection {
  background-color: #7b3f00;
  color: #0c0c1d;
}
#canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  max-width: 700px;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #7b3f00;
  text-shadow: 0 0 10px #7b3f00;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.highlight {
  color: #7b3f00;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: #7b3f00;
  color: #0c0c1d;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #7b3f00;
  transform: translateY(-3px);
  box-shadow: 0 7px 15px #7b3f00;
}
