/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background and layout */
body {
  background-color: #1d1d1b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Container */
.container {
  max-width: 600px;
  width: 100%;
}

/* Logo */
.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 30px;
}

/* Heading */
h1 {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Paragraphs */
p {
  font-size: 1.1em;
  margin: 8px 0;
  color: #fff;
}

/* Responsive text adjustments */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }
  p {
    font-size: 1em;
  }
}