css /* Style for the boss fights page */ body { background-color: #000; color: #fff; font-family: "Arial", sans-serif; font-size: 18px; line-height: 1.5; margin: 0 auto; padding: 20px 0 0 20px; border: 1px solid #333; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } /* Header */ h1 { font-size: 32px; font-weight: bold; text-transform: uppercase; border-bottom: 4px solid #666; margin-bottom: 10px; text-align: center; padding: 10px 0; } h1 a { text-decoration: none; color: #fff; transition: color 0.2s; } h1 a:hover { color: #999; } /* Links */ a { color: #fff; font-weight: bold; text-decoration: none; transition: color 0.2s; border-bottom: 1px solid #666; padding: 5px 10px; margin: 0 5px 5px 5px; display: block; text-align: center; text-transform: uppercase; } a:hover { background-color: #333; color: #fff; border-bottom: 2px solid #666; } /* Buttons */ button { background-color: #333; border: 1px solid #666; border-radius: 5px; padding: 8px 20px; font-size: 18px; font-family: "Arial", sans-serif; color: #fff; cursor: pointer; margin: 10px; text-align: center; text-transform: uppercase; } button:hover { background-color: #999; border: 2px solid #666; cursor: pointer; transition: background-color 0.2s; } /* Footer */ footer { background-color: #333; border-top: 1px solid #666; margin-top: 20px; padding: 10px 0; text-align: center; font-size: 14px; color: #666; text-transform: uppercase; border-bottom: 4px solid #666; } /* Boss Fights Page */ .boss-fight-container { max-width: 800px; margin: 40px auto; padding: 20px; background-color: #fff; border: 2px solid #333; border-radius: 10px; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); position: relative; display: block; text-align: center; background-image: linear-gradient(45deg, #333 0, #000 100%); } .boss-fight-container h2 { font-size: 24px; font-weight: bold; text-align: center; margin-bottom: 20px; background-color: #fff; border: 1px solid #666; border-bottom: 4px solid #666; padding: 10px 0; color: #333; text-transform: uppercase; border-radius: 10px; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); } .boss-fight-container h3 { font-size: 20px; font-weight: bold; text-align: center; margin-bottom: 10px; padding: 10px 0; background-color: #fff; border: 1px solid #666; border-bottom: 4px solid #666; color: #333; text-transform: uppercase; border-radius: 10px; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); } .boss-fight-container p { font-size: 16px; font-weight: normal; margin-bottom: 20px; background-color: #fff; border: 1px solid #666; border-bottom: 4px solid #666; padding: 15px 20px; color: #333; text-transform: uppercase; border-radius: 10px; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); } .boss-fight-container p a { color: #333; text-decoration: none; font-weight: bold; text-align: left; margin: 10px; display: block; text-transform: uppercase; }