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

body {
  margin: 0;
  padding: 0;
  background-color: #0d1b2a;
  color: white;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background-color: #4a7fb5;
  border-radius: 50px;
  filter: blur(40px);
  opacity: 0.7;
}

#cloud1 { width: 500px; height: 100px; top: -20px; left: -30px; }
#cloud2 { width: 400px; height: 90px;  top: -10px; left: 280px; }
#cloud3 { width: 420px; height: 95px;  top: -15px; right: -30px; }


.raindrop {
  position: absolute;
  top: 0;
  width: 1px;
  background-color: lightblue;
  opacity: 0.5;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.label {
  font-size: 12px;
  letter-spacing: 4px;
  color: lightblue;
  margin-bottom: 10px;
}

.title {
  font-size: 90px;
  font-weight: bold;
  letter-spacing: 15px;
  color: white;
  margin: 0;
  opacity: 0;
  transition: opacity 2s;
}

.subtitle {
  font-size: 14px;
  color: lightblue;
  margin-top: 16px;
}

.btn {
  margin-top: 24px;
  padding: 12px 30px;
  background-color: transparent;
  color: lightblue;
  border: 1px solid lightblue;
  font-size: 13px;
  cursor: pointer;
}

.btn:hover {
  background-color: lightblue;
  color: #0d1b2a;
}