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

.content {
  text-align: center;
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.button {
  display: inline-block;
  background-color: #fff;
  color: black;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button:hover {
  background-color: #ddd;
}