body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #ecf0f1;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
}

.globe {
  font-size: 500px;
  color: #3498db;
  animation: spin 3s infinite linear;
  margin-bottom: 20px;
}

h1 {
  font-size: 2em;
  margin: 0;
  color: #1abc9c;
}

p {
  font-size: 1em;
  color: #bdc3c7;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

