/* === GLOBAL STYLES === */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("cartoon-characters-mordecai-and-rigby-stgu0vim5u4860f1.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* === MAIN CONTAINER === */
.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* === QUOTE SECTION === */
.quote-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.quote-card {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px 20px;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.app-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #90ee90;
}

/* === QUOTE TEXT === */
.quote-text {
  font-size: 24px;
  margin: 20px 0;
  font-style: italic;
}

/* === BUTTONS === */
.btn {
  padding: 10px 20px;
  border: 1px solid #90ee90;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #90ee90;
  color: black;
}

/* === FOOTER === */
.footer {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 15px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.contact-info {
  margin-bottom: 5px;
}

.email-link {
  color: #d5f5d7;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.credits {
  font-size: 12px;
  opacity: 0.8;
}

/* === RESPONSIVE STYLING === */
@media screen and (max-width: 600px) {
  .quote-text {
    font-size: 18px;
  }

  .app-title {
    font-size: 24px;
  }

  .btn {
    width: 100%;
  }
}
