@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 40px 20px;
}

#header {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
}

.computer-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.computer-image:hover {
  transform: translateY(-5px);
}


h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 2px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.email-signup {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 10px;
}

input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

button {
  padding: 15px 30px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ff5252;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .computer-image {
    width: 150px;
    height: 150px;
  }

  .computer-svg {
    width: 90px;
    height: 90px;
  }

  .email-signup {
    flex-direction: column;
  }
}