/* Reset default margin and padding */
body, html {
  margin: 0;
  padding: 0;
}

/* Set background image */
.background-image {
  background-image: url('logo.jpg'); /* Replace 'path/to/your/image.jpg' with your image path */
  background-size: cover;
  background-position: center;
  height: 100vh; /* Set the height to fill the entire viewport */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Style the headline using Google Font Inter */
.headline {
  font-family: 'Inter', sans-serif; /* Use Inter font */
  font-weight: 700; /* Use the bold (700) weight */
  font-size: 72px; /* Adjust font size */
  color: white;
  margin-top: 100px; /* Adjust top margin to position the headline */
  text-shadow: 2px 2px 4px #000000; /* Add text shadow as outline */
}

/* Center the Discord button */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.discord-button {
  display: inline-block;
  padding: 20px 40px;
  background-color: #7289da; /* Discord's default color */
  color: white;
  text-decoration: none;
  font-size: 24px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.discord-button:hover {
  background-color: #5f73bc; /* Darker shade on hover */
}
