html,
body {
  background-color: #212121;
  background-size: cover;
  color: white;
  font-family: "Konnect";
}
.title {
  color: white;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 600px) {
  .title {
    font-size: 36px !important;
  }
}
@font-face {
  font-family: "Konnect";
  src: url("font/KonnectRegular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "Konnect";
  src: url("font/KonnectBold.otf") format("opentype");
  font-weight: bold;
}
@font-face {
  font-family: "Konnect";
  src: url("font/KonnectThin.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "Konnect";
  src: url("font/KonnectSemiBold.otf") format("opentype");
  font-weight: 400;
}
.button_landing {
  background-color: #f2f2f2; /* Light grey background */
  color: #4c4c4c; /* Dark grey text */
  padding: 15px 60px;
  border: none;
  border-radius: 16px; /* Rounded corners */
  box-shadow: 0 0 30px rgba(145, 145, 145, 0.6);
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.button {
  background-color: #f2f2f2; /* Light grey background */
  color: #4c4c4c; /* Dark grey text */
  padding: 15px 60px;
  border: none;
  border-radius: 6px; /* Rounded corners */
  box-shadow: 0 0 30px rgba(145, 145, 145, 0.6);
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #e0e0e0; /* Slightly darker grey on hover */
}
.button:disabled {
  background-color: #b8b8b8; /* Light grey background */
  color: #4c4c4c; /* Dark grey text */
  cursor: not-allowed;
}
