/* mentions.css */
body {
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6caee;
    color: #222;
}

main {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

h1,
h2 {
    color: #444;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin: 0.8rem 0;
}

a {
    color: #000;
    text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
    color:#ed158f;
    
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem auto;
    width: 60%;
}

.back-btn button {
  background-color: #ed158f;
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-btn button:hover {
  background-color: #1e4ed8;
  transform: translateY(-2px);
}