/* Clean Layout Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
  background: url('../images/space.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  margin-bottom: 50px;
}

.logo img {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.content h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}

.content h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
}

.content a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.content a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .logo {
    margin-bottom: 40px;
  }

  .logo img {
    width: 200px;
  }

  .content h1 {
    font-size: 24px;
  }

  .content h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding: 15px;
  }

  .logo {
    margin-bottom: 30px;
  }

  .logo img {
    width: 150px;
  }

  .content h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .content h2 {
    font-size: 16px;
  }
}
