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

body {
  background-image: url('back.png');
  background-size: cover;
  background-position: center ;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  color: white;
}

.homepage {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

#backgroundCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.logo h1 {
  font-size: 6vw;
  letter-spacing: 2px;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
}

.logo h1:first-child {
  color: #ff5555; 
}

.logo h1:last-child {
  color: #ffd700; 
}

.buttons {
  margin-top: 40px;
  display: flex;
  z-index: 1;
}

.btn {
  background: #2e2e2e;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-3px);
  background: #ff5555;
}

.btn:active {
  transform: translateY(1px);
}