@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");/* Reset some default styles */
body, h1, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(rgb(24 37 105 / 73%), rgb(7 15 53 / 67%)), 
  url('/dist/img/header-bg-image.webp') 
  no-repeat center center fixed;
  background-size: cover;
}

.container {
  text-align: center;
  width: 500px;
  background: linear-gradient(rgb(22 39 128 / 75%), rgb(61 75 147));
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

h1 {
  font-size: 120px;
  color: #fff;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

p {
  font-size: 20px;
  margin-bottom: 10px;
  color: #add9ff;
}

div span {
	font-size: 12px;
    color: #add9ff;
}

.home-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  background-color: #0f4fe6;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
      width: 400px;
      padding: 15px;
  }

  h1 {
      font-size: 78px;
  }

  p {
      font-size: 16px;
  }

  .home-button {
      font-size: 16px;
      padding: 8px 16px;
  }
}