/* Reset default browser styles */
html, body, header, section, footer, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  background-color: #36393e
}

/* Set a base font size and line height */
html {
  font-size: 16px;
  line-height: 1.5;
}

/* Apply a modern font */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Add some space around the sections */
section {
  padding: 40px 0;
}

/* Style the header */
header {
  background-color: #2b2d31; /* Discord's Dark Theme Background Color */
  padding: 20px;
}

nav {
  text-align: right;
}

nav a {
  color: #fff; /* Discord's White Color */
  text-decoration: none;
  margin-left: 20px;
}

/* Style the hero section */
.hero {
  background-image: url("hero-background.jpg");
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #7289da; /* Discord's Blurple Color */
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #677bc4; /* Discord's Dark Blurple Color */
}

/* Style the footer */
footer {
  background-color: #232428; /* Discord's Darker Theme Background Color */
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: auto
}

/* Style the output code */
#output {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

/* Add media queries for responsive design */
@media screen and (max-width: 768px) {
  header nav {
    text-align: center;
  }
  
  header nav a {
    display: block;
    margin: 10px 0;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  footer {
    font-size: 14px;
  }
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #7289da; /* Discord's Blurple Color */
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #677bc4; /* Discord's Dark Blurple Color */
}

.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}