@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  /* Changed background to black */
  background-color: #121212; 
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 20px;
}

.container {
  /* Changed container to a dark grey and text to white */
  background-color: #1E1E1E;
  color: #fff;
  border-radius: 10px;
  /* Updated shadow to a subtle glow for dark theme */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 6px 6px rgba(0, 0, 0, 0.6);
  padding: 50px 20px;
  text-align: center;
  max-width: 100%;
  width: 800px;
}

h1 {
  margin-top: 0;
  letter-spacing: 2px;
}

h2 {
  margin: 0;
  /* Opacity works well on white text to make it appear grey */
  opacity: 0.6;
  letter-spacing: 2px;
}

.joke {
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 40px;
  margin: 50px auto;
  max-width: 600px;
}

.btn {
  background-color: #9f68e0;
  color: #fff;
  border: 0;
  border-radius: 10px;
  /* Removed shadow as it doesn't fit the dark theme */
  box-shadow: none;
  padding: 14px 40px;
  font-size: 16px;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus {
  outline: 0;
}

.about-content {
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
  line-height: 1.6;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content a {
  color: #9f68e0; 
  text-decoration: none; 
}

.about-content a:hover {
  text-decoration: underline;
}

