
.menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #38c2bb;
  font-weight: bold;
  border: 2px solid #38c2bb;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background-color: #38c2bb;
  color: #ffffff!important;
}

body {
  font-family: system-ui, sans-serif;
  background: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

.site-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.site-header {
  border-bottom: 2px solid #38c2bb;
  margin-bottom: 1.5rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
}

.main-nav a {
  color: #38c2bb;
  text-decoration: none;
  font-weight: bold;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.main-content {
  flex: 2 1 60%;
}

.sidebar {
  flex: 1 1 30%;
  background: #f0f8f8;
  padding: 1rem;
  border-radius: 8px;
}

.widget h3 {
  color: #38c2bb;
  margin-top: 0;
}

.widget ul {
  padding-left: 1rem;
}

.site-footer {
  margin-top: 60px;
  padding: 20px;
  background-color: #f8f8f8;
  text-align: center;
  border-top: 2px solid #38c2bb;
  font-size: 0.9rem;
  color: #333;
}

.site-footer a {
  color: #38c2bb;
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.5em 1em;
  background: #38c2bb;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

  img {
      max-width: 100%;
      height: auto;
  }