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

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a23;
  overflow: hidden;
}

.background {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.content {
  z-index: 1;
  padding: 2rem;
}

h1 {
  font-size: 4rem;
  background: linear-gradient(90deg, #00d9ff, #4567ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  color: #cfd8dc;
  margin: 0.5rem 0;
}

.phone {
  margin-top: 2rem;
  font-size: 1rem;
  color: #90caf9;
}
