/* forum.css */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'WF Visual Sans', sans-serif;
  color: #333;
}

.page-container {
  display: flex;
  background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
  flex-direction: column;
  min-height: 100vh;
}

.content-section {
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.content-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.forum-preview img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.forum-btn {
  background-color: #4CAF50;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.forum-btn:hover {
  background-color: #43a047;
}
