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

body {
  background-color: black;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo top-left */
header {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo {
  width: 90px;   /* adjust size as needed */
  height: auto;
}

/* Button styling */
.style {
  padding: 14px 30px;
  background-color: #237eed; /* blue base */
  color: black;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.style:hover {
  background-color: #54b0d1; /* lighter blue on hover */
}
