body { background: #ffeef4; font-family: "Verdana", sans-serif; color: #6b4c57; } #container { width: 900px; margin: 20px auto; background: #fff; border: 4px solid #f6b7c9; border-radius: 15px; padding: 15px; } /* Header */ header { text-align: center; background: #ffd6e5; border-radius: 12px; padding: 10px; } .logo { width: 120px; } .subtitle { font-size: 12px; } /* Layout */ #layout { display: grid; grid-template-columns: 200px 1fr 200px; gap: 10px; margin-top: 15px; } /* Sidebars */ .sidebar { background: #fff5f9; border: 2px dashed #f6b7c9; border-radius: 10px; padding: 10px; font-size: 13px; } .mascot { width: 100%; border-radius: 10px; } /* Main content */ main { background: #ffffff; border: 2px solid #f6b7c9; border-radius: 10px; padding: 15px; } h1, h2 { color: #e78ca3; } ul { padding-left: 20px; } /* Navigation */ .nav { list-style: none; padding: 0; } .nav li { margin-bottom: 5px; } .nav a { text-decoration: none; color: #e78ca3; } .nav a:hover { text-decoration: underline; } /* Footer */ footer { text-align: center; font-size: 11px; margin-top: 15px; color: #9a6b7a; }