.logo {
  width: 150px;
  margin-bottom: 20px;
  mix-blend-mode: lighten; /* try lighten, screen, overlay, multiply */
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}


/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Full screen container */
body, html {
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #0b5ed7, #0a3d91);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* Main container */
.container {
  max-width: 500px;
  padding: 30px;
  background: rgba(0,0,0,0.4); /* semi-transparent background */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Logo */
.logo {
  width: 150px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

/* Heading */
h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Paragraph */
p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Optional email subscribe form */
/*
.subscribe {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  flex: 1;
}

.subscribe button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ff9800;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe button:hover {
  background-color: #e68900;
}
*/
